mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 21:29:00 +00:00
8 lines
209 B
Bash
8 lines
209 B
Bash
![]() |
#!/usr/bin/env sh
|
||
|
|
||
|
if ! which g++ > /dev/null; then
|
||
|
echo "g++ not found, skipping compilation"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
c++ -O3 -march=native -shared -fPIC -Isrc/main/public src/main/cpp/*.cpp -o resources/libcpp.so
|