|
7 | 7 | export SCONS="scons -j${NUM_CORES} verbose=yes warnings=no progress=no"
|
8 | 8 | export OPTIONS="production=yes"
|
9 | 9 | export OPTIONS_MONO="module_mono_enabled=yes"
|
10 |
| -export OPTIONS_ARM="lto=none" |
11 | 10 | export TERM=xterm
|
12 | 11 |
|
13 | 12 | rm -rf godot
|
@@ -48,26 +47,26 @@ if [ "${CLASSICAL}" == "1" ]; then
|
48 | 47 |
|
49 | 48 | export PATH="${GODOT_SDK_LINUX_ARM64}/bin:${BASE_PATH}"
|
50 | 49 |
|
51 |
| - $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_ARM target=editor |
| 50 | + $SCONS platform=linuxbsd arch=arm64 $OPTIONS target=editor |
52 | 51 | mkdir -p /root/out/arm64/tools
|
53 | 52 | cp -rvp bin/* /root/out/arm64/tools
|
54 | 53 | rm -rf bin
|
55 | 54 |
|
56 |
| - $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_ARM target=template_debug |
57 |
| - $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_ARM target=template_release |
| 55 | + $SCONS platform=linuxbsd arch=arm64 $OPTIONS target=template_debug |
| 56 | + $SCONS platform=linuxbsd arch=arm64 $OPTIONS target=template_release |
58 | 57 | mkdir -p /root/out/arm64/templates
|
59 | 58 | cp -rvp bin/* /root/out/arm64/templates
|
60 | 59 | rm -rf bin
|
61 | 60 |
|
62 | 61 | export PATH="${GODOT_SDK_LINUX_ARM32}/bin:${BASE_PATH}"
|
63 | 62 |
|
64 |
| - $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_ARM target=editor |
| 63 | + $SCONS platform=linuxbsd arch=arm32 $OPTIONS target=editor |
65 | 64 | mkdir -p /root/out/arm32/tools
|
66 | 65 | cp -rvp bin/* /root/out/arm32/tools
|
67 | 66 | rm -rf bin
|
68 | 67 |
|
69 |
| - $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_ARM target=template_debug |
70 |
| - $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_ARM target=template_release |
| 68 | + $SCONS platform=linuxbsd arch=arm32 $OPTIONS target=template_debug |
| 69 | + $SCONS platform=linuxbsd arch=arm32 $OPTIONS target=template_release |
71 | 70 | mkdir -p /root/out/arm32/templates
|
72 | 71 | cp -rvp bin/* /root/out/arm32/templates
|
73 | 72 | rm -rf bin
|
@@ -111,28 +110,28 @@ if [ "${MONO}" == "1" ]; then
|
111 | 110 |
|
112 | 111 | export PATH="${GODOT_SDK_LINUX_ARM64}/bin:${BASE_PATH}"
|
113 | 112 |
|
114 |
| - $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_MONO $OPTIONS_ARM target=editor |
| 113 | + $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_MONO target=editor |
115 | 114 | ./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=linuxbsd
|
116 | 115 | mkdir -p /root/out/arm64/tools-mono
|
117 | 116 | cp -rvp bin/* /root/out/arm64/tools-mono
|
118 | 117 | rm -rf bin
|
119 | 118 |
|
120 |
| - $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_MONO $OPTIONS_ARM target=template_debug |
121 |
| - $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_MONO $OPTIONS_ARM target=template_release |
| 119 | + $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_MONO target=template_debug |
| 120 | + $SCONS platform=linuxbsd arch=arm64 $OPTIONS $OPTIONS_MONO target=template_release |
122 | 121 | mkdir -p /root/out/arm64/templates-mono
|
123 | 122 | cp -rvp bin/* /root/out/arm64/templates-mono
|
124 | 123 | rm -rf bin
|
125 | 124 |
|
126 | 125 | export PATH="${GODOT_SDK_LINUX_ARM32}/bin:${BASE_PATH}"
|
127 | 126 |
|
128 |
| - $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_MONO $OPTIONS_ARM target=editor |
| 127 | + $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_MONO target=editor |
129 | 128 | ./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=linuxbsd
|
130 | 129 | mkdir -p /root/out/arm32/tools-mono
|
131 | 130 | cp -rvp bin/* /root/out/arm32/tools-mono
|
132 | 131 | rm -rf bin
|
133 | 132 |
|
134 |
| - $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_MONO $OPTIONS_ARM target=template_debug |
135 |
| - $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_MONO $OPTIONS_ARM target=template_release |
| 133 | + $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_MONO target=template_debug |
| 134 | + $SCONS platform=linuxbsd arch=arm32 $OPTIONS $OPTIONS_MONO target=template_release |
136 | 135 | mkdir -p /root/out/arm32/templates-mono
|
137 | 136 | cp -rvp bin/* /root/out/arm32/templates-mono
|
138 | 137 | rm -rf bin
|
|
0 commit comments