summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2022-10-10 17:44:58 +0200
committerJaron Kent-Dobias <jaron@kent-dobias.com>2022-10-10 17:44:58 +0200
commitbbc27302fa9ae20de0650154d5d479860cf000de (patch)
tree1089a9c5cac1aa980334aa624b8bd6024a435a86 /Makefile
parent0d20e69294b7550496f83056e3c291b08492c680 (diff)
downloadcode-bbc27302fa9ae20de0650154d5d479860cf000de.tar.gz
code-bbc27302fa9ae20de0650154d5d479860cf000de.tar.bz2
code-bbc27302fa9ae20de0650154d5d479860cf000de.zip
A little more refactoring.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 31d3891..e7b1f6c 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ BLOSSOM_DIRS := $(BLOSSOM_DIR) $(BLOSSOM_DIR)/MinCost $(BLOSSOM_DIR)/GEOM
BLOSSOM_SOURCES := $(filter-out $(BLOSSOM_DIR)/example.cpp, $(foreach dir, $(BLOSSOM_DIRS), $(wildcard $(dir)/*.cpp)))
BLOSSOM_OBJS := $(patsubst %.cpp, %.o, $(BLOSSOM_SOURCES))
-CFLAGS := -flto -fopenmp -O3 -Os -march=native -mtune=native -D_NDEBUG -DPERFECT_MATCHING_DOUBLE
+CFLAGS := -std=c++20 -stdlib=libc++ -flto -fopenmp -O3 -Os -march=native -mtune=native -D_NDEBUG -DPERFECT_MATCHING_DOUBLE
CXX = clang++
LD = ld.lld
LIBS := -lrt