1
0
2023-08-01 02:02:59 +03:00

10 lines
176 B
Bash
Executable File

#!/bin/bash -e
export CC=clang
export CXX=clang++
export CFLAGS="-fvisibility=hidden -fexceptions -O3"
export CXXFLAGS="$CFLAGS -frtti -O3"
export NPROC=$(( $(nproc) + 1 ))