user create tree
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
mkdir -p bin/release
|
||||
|
||||
language='
|
||||
-std=c++17
|
||||
-fno-rtti
|
||||
-fno-exceptions
|
||||
-fno-non-call-exceptions
|
||||
-fno-common'
|
||||
# force each global variable to be only defined once
|
||||
|
||||
optimizations='
|
||||
-Ofast
|
||||
-flto
|
||||
-fipa-pta
|
||||
-fallow-store-data-races
|
||||
-fgcse-sm
|
||||
-fgcse-las
|
||||
-march=native'
|
||||
|
||||
warnings='
|
||||
-Wall
|
||||
-Wextra
|
||||
-Wpedantic
|
||||
-Wmultiple-inheritance
|
||||
-Wvirtual-inheritance' #-fanalyzer
|
||||
|
||||
|
||||
other='-fno-fat-lto-objects'
|
||||
|
||||
g++ -o bin/release/famt $language $optimizations $warnings $other -DNDEBUG -pipe -s *.cpp -lncursesw
|
||||
#-static -lncursesw -ltinfo
|
||||
Reference in New Issue
Block a user