MarginaliaSearch/code/libraries/array/cpp/compile.sh
2024-05-16 14:47:10 +02:00

10 lines
226 B
Bash

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