Aryanne's picture
Update start.sh
19ae973 verified
raw
history blame contribute delete
495 Bytes
#!/bin/bash
PORT=8888
NOSERVER=""
while [[ $# -gt 0 ]]; do
case $1 in
--port)
PORT="$2"
shift
shift
;;
--noserver)
NOSERVER="--noserver"
shift
;;
*)
shift
;;
esac
done
find . -maxdepth 1 -type f -name '*.so' -exec rm {} \;
g++ -O3 -Wall -Wextra -pedantic -march=native -fPIC -funroll-loops -ffinite-math-only -fopenmp -shared -o libfract.so fract.cpp