Skip to content

Commit fe6e7b1

Browse files
committed
Use GCC 9 on Linux
1 parent 744b520 commit fe6e7b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build-linux/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export SCONS="scons -j${NUM_CORES} verbose=yes warnings=no progress=no"
99
export OPTIONS="debug_symbols=no use_lto=yes"
1010
export OPTIONS_MONO="module_mono_enabled=yes mono_static=yes"
1111
export TERM=xterm
12-
export CC="gcc-8"
13-
export CXX="g++-8"
12+
export CC="gcc-9"
13+
export CXX="g++-9"
1414

1515
if [ "$(getconf LONG_BIT)" == "64" ]; then
1616
export OPTIONS="${OPTIONS} use_static_cpp=yes"

build-server/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export SCONS="scons -j${NUM_CORES} verbose=yes warnings=no progress=no"
99
export OPTIONS="debug_symbols=no use_static_cpp=yes use_lto=yes"
1010
export OPTIONS_MONO="module_mono_enabled=yes mono_static=yes"
1111
export TERM=xterm
12-
export CC="gcc-8"
13-
export CXX="g++-8"
12+
export CC="gcc-9"
13+
export CXX="g++-9"
1414

1515
rm -rf godot
1616
mkdir godot

0 commit comments

Comments
 (0)