mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
38 lines
866 B
Bash
Executable File
38 lines
866 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
CACHEDIR="$HOME/cache"
|
|
NPROC=$(sysctl -n hw.physicalcpu)
|
|
|
|
# Workaround for bug in Homebrew where it only finds an old Ruby version.
|
|
brew update
|
|
|
|
brew install libconfig libsodium libvpx opus
|
|
|
|
. ".travis/flags-clang.sh"
|
|
|
|
add_ld_flag -undefined error
|
|
|
|
# Make compilation error on a warning
|
|
add_flag -Werror
|
|
|
|
cmake -B_build -H. \
|
|
-DCMAKE_C_FLAGS="$C_FLAGS" \
|
|
-DCMAKE_CXX_FLAGS="$CXX_FLAGS" \
|
|
-DCMAKE_EXE_LINKER_FLAGS="$LD_FLAGS" \
|
|
-DCMAKE_SHARED_LINKER_FLAGS="$LD_FLAGS" \
|
|
-DCMAKE_INSTALL_PREFIX:PATH="$PWD/_install" \
|
|
-DMIN_LOGGER_LEVEL=TRACE \
|
|
-DMUST_BUILD_TOXAV=ON \
|
|
-DNON_HERMETIC_TESTS=ON \
|
|
-DTEST_TIMEOUT_SECONDS=120 \
|
|
-DUSE_IPV6=OFF \
|
|
-DAUTOTEST=ON
|
|
|
|
cd _build # pushd
|
|
make "-j$NPROC" -k install
|
|
make "-j$NPROC" test ARGS="-j50" ||
|
|
make "-j$NPROC" test ARGS="-j50 --rerun-failed" CTEST_OUTPUT_ON_FAILURE=1
|
|
cd - # popd
|