Aryanne's picture
Rename start (1).sh to start.sh
260a373 verified
raw
history blame
345 Bytes
#!/bin/bash
PORT=8888
while [[ $# -gt 0 ]]; do
case $1 in
--port)
PORT="$2"
shift
shift
;;
*)
shift
;;
esac
done
rm *so
g++ -O3 -Wall -Wextra -pedantic -march=native -fPIC -funroll-loops -ffast-math -fopenmp -shared -o libfract.so fract.cpp