remove conflict
[c11concurrency-benchmarks.git] / mabain / src / Makefile
index 4da7aca804ba76426c15edb79d54c0ea50e4186e..adb615ed25856498964a60d7380fdc344b479da8 100644 (file)
@@ -1,12 +1,13 @@
-CPP=g++
+CPP=../../clang++
 TARGET=libmabain.so
 
 all: $(TARGET)
 
 CFLAGS  = -I. -I.. -Iutil -Wall -Werror -c -Wwrite-strings -Wsign-compare -Wcast-align -Wformat-security -fdiagnostics-show-option
 CFLAGS += -g -ggdb -fPIC -O2 -std=c++11
+
 CFLAGS += -D__SHM_LOCK__ -D__LOCK_FREE__ -D__SHM_QUEUE__
-LDFLAGS = -lpthread
+LDFLAGS = -pthread
 
 SOURCES = $(wildcard *.cpp) $(wildcard util/*.cpp)
 HEADERS = $(wildcard *.h) $(wildcard util/*.h)