10 lines
397 B
Bash
10 lines
397 B
Bash
#!/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
|