-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Fedora 38, update all toolchains
- Base image: Fedora 38 - SCons: 4.5.2 - Linux: GCC 10.2.0 built against glibc 2.19, binutils 2.35.1 - Windows: MinGW 10.0.0, GCC 12.2.1, binutils 2.39 - Web: Emscripten 3.1.36 - Android: Android NDK 25.2.9519653, build-tools 34.0.0, platform android-34, CMake 3.22.1, JDK 17 - macOS: Xcode 14.3.1 with Apple Clang (LLVM 15.0.0), MacOSX SDK 13.3 - iOS: Xcode 14.3.1 with Apple Clang (LLVM 15.0.0), iPhoneOS SDK 16.4 Switches macOS/iOS builds to use Apple Clang, to maximize compatibility with upstream Xcode. This enables us to build the arm64 simulator for iOS. Also add gettext which is needed by Godot build scripts to compile PO files to MO.
- Loading branch information
Showing
8 changed files
with
54 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
FROM fedora:36 | ||
FROM fedora:38 | ||
|
||
WORKDIR /root | ||
|
||
ENV DOTNET_NOLOGO=1 | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 | ||
|
||
RUN dnf -y install --setopt=install_weak_deps=False \ | ||
bash bzip2 curl file findutils git make nano patch pkgconfig python3-pip unzip which xz \ | ||
bash bzip2 curl file findutils gettext git make nano patch pkgconfig python3-pip unzip which xz \ | ||
dotnet-sdk-6.0 && \ | ||
pip install scons==4.4.0 | ||
pip install scons==4.5.2 | ||
|
||
CMD /bin/bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters