From fe95a92cf610f14b27e3fc95fc415d4e001e594b Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Fri, 6 Dec 2024 09:46:54 +0100 Subject: [PATCH] Added GCC build script. --- contrib/builder/scripts/build_gcc.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 contrib/builder/scripts/build_gcc.sh diff --git a/contrib/builder/scripts/build_gcc.sh b/contrib/builder/scripts/build_gcc.sh new file mode 100644 index 0000000..ebb837b --- /dev/null +++ b/contrib/builder/scripts/build_gcc.sh @@ -0,0 +1,9 @@ +#!/bin/bash +set -xe +python -m virtualenv venv +source venv/bin/activate +pip install scons +pip install -r external/scons-plus-plus/requirements.txt +scons -j$(nproc) --build_type=debug --variant=linux_gcc_debug --compiler=gcc +scons -j$(nproc) --build_type=release_debug --variant=linux_gcc_release_debug --compiler=gcc +scons -j$(nproc) --build_type=release --variant=linux_gcc_release --compiler=gcc