mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 13:19:02 +00:00
8 lines
212 B
Bash
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 |