MarginaliaSearch/code/libraries/array/cpp/compile.sh
2024-05-14 17:43:05 +02:00

8 lines
212 B
Bash

#!/usr/bin/env sh
if ! which g++ > /dev/null; then
echo "g++ not found, skipping compilation"
exit 0
fi
c++ -c -O3 -march=native -shared -fPIC -Isrc/main/public src/main/cpp/*.cpp -o resources/libcpp.so