Add -pthread flag for pthread_setaffinity_np

This commit is contained in:
Thomas Roehl
2019-03-13 14:46:03 +01:00
parent 4dadbdf4b3
commit 1dae6cb139
3 changed files with 6 additions and 6 deletions

View File

@@ -2,8 +2,8 @@ CC = icc
LINKER = $(CC)
OPENMP = -qopenmp
CFLAGS = -Ofast -xhost -std=c11 $(OPENMP)
LFLAGS = $(OPENMP)
CFLAGS = -Ofast -xhost -std=c11 -pthread $(OPENMP)
LFLAGS = -pthread $(OPENMP)
DEFINES = -D_GNU_SOURCE
INCLUDES =
LIBS =