You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
478 B

Index: Makefile
--- Makefile.orig 2019-04-20 17:49:07.000000000 +0200
+++ Makefile 2019-04-20 17:54:17.102959000 +0200
@@ -14,7 +14,7 @@
CXX ?= g++
tab: $(SRC) $(INCLUDE) $(FUNCS)
- $(CXX) -std=c++11 -O3 -Wall -Iaxe -pthread -lm $(SRC) -o tab
+ $(CXX) -std=c++11 -O2 -Iaxe -pthread $(SRC) -o tab -lm
dist: $(SRC) $(INCLUDE) $(FUNCS)
$(CXX) -std=c++11 -O3 -Wall -Iaxe -Wl,--whole-archive -lpthread -Wl,--no-whole-archive -lm -pthread $(SRC) -static -o tab-linux-x86_64