Aryanne commited on
Commit
16a085d
·
verified ·
1 Parent(s): 3db7c19

Delete start.sh

Browse files
Files changed (1) hide show
  1. start.sh +0 -26
start.sh DELETED
@@ -1,26 +0,0 @@
1
- #!/bin/bash
2
-
3
- PORT=8888
4
- NOSERVER=""
5
-
6
-
7
- while [[ $# -gt 0 ]]; do
8
- case $1 in
9
- --port)
10
- PORT="$2"
11
- shift
12
- shift
13
- ;;
14
- --noserver)
15
- NOSERVER="--noserver"
16
- shift
17
- ;;
18
- *)
19
- shift
20
- ;;
21
- esac
22
- done
23
-
24
- find . -maxdepth 1 -type f -name '*.so' -exec rm {} \;
25
-
26
- g++ -O3 -Wall -Wextra -pedantic -march=native -fPIC -funroll-loops -fopenmp -shared -o libfract.so fract.cpp