File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ CXXFLAGS += -O3 $(ARCHFLAGS) -Wall -I. -std=c++11
8
8
DEBUGFLAGS += -O0 $(ARCHFLAGS ) -Wall -I. -std=c++11 -g -DDEBUG
9
9
# DEBUGFLAGS += -fsanitize=undefined -fno-sanitize-recover=all -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow -fno-sanitize=null -fno-sanitize=alignment
10
10
11
- LIBS = -lpthread
11
+
12
12
13
13
CFLAGS = -O3
14
14
@@ -25,13 +25,13 @@ argtable3.o:
25
25
$(CC ) -c $(CFLAGS ) contrib/argtable3.c
26
26
27
27
tspg : $(DEPS ) $(OBJS )
28
- $(GPP ) $(CXXFLAGS ) $(DISABLEWARN ) main.cpp $( LIBS ) $(OBJS ) -o tspg
28
+ $(GPP ) $(CXXFLAGS ) $(DISABLEWARN ) main.cpp $(OBJS ) -o tspg
29
29
30
30
tspg_debug : $(DEPS ) $(OBJS )
31
- $(GPP ) $(DEBUGFLAGS ) $(DISABLEWARN ) main.cpp $( LIBS ) $(OBJS ) -o tspg_debug
31
+ $(GPP ) $(DEBUGFLAGS ) $(DISABLEWARN ) main.cpp $(OBJS ) -o tspg_debug
32
32
33
33
tspg_debug2 : $(DEPS ) $(OBJS )
34
- $(GPP ) $(DEBUGFLAGS ) $(DISABLEWARN ) main.cpp $( LIBS ) $(OBJS ) -o tspg_debug2
34
+ $(GPP ) $(DEBUGFLAGS ) $(DISABLEWARN ) main.cpp $(OBJS ) -o tspg_debug2
35
35
36
36
37
37
clean :
Original file line number Diff line number Diff line change 12
12
* If not, see <http://www.gnu.org/licenses/lgpl.html>.
13
13
*******************************************************************************/
14
14
#include < stdio.h>
15
- #include < pthread.h>
16
15
#include " contrib/argtable3.h"
17
16
#include < sys/mman.h> // mmap, munmap
18
17
Original file line number Diff line number Diff line change 6
6
#include < stdio.h>
7
7
8
8
#include < stdio.h>
9
- #include < pthread.h>
10
9
#include " contrib/argtable3.h"
11
10
#include < sys/mman.h> // mmap, munmap
12
11
You can’t perform that action at this time.
0 commit comments