MarginaliaSearch/code/libraries/array/cpp/compile.sh

10 lines
226 B
Bash
Raw Normal View History

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