mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 21:29:00 +00:00
10 lines
226 B
Bash
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 |