summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2022-10-10 15:57:46 +0200
committerJaron Kent-Dobias <jaron@kent-dobias.com>2022-10-10 15:57:46 +0200
commitfcd9bcf98790616ca6367de6ecdb75809b56a040 (patch)
tree46e750eccdeda5f1be4829d05e8fa93daf188b49 /Makefile
parentb2451666ef1aec1aadc7bb54458f04542b4b7ccb (diff)
downloadcode-fcd9bcf98790616ca6367de6ecdb75809b56a040.tar.gz
code-fcd9bcf98790616ca6367de6ecdb75809b56a040.tar.bz2
code-fcd9bcf98790616ca6367de6ecdb75809b56a040.zip
Finished implementing the Propp algorithm for edge probabilities.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 33c8b6c..31d3891 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 -D_NDEBUG -DPERFECT_MATCHING_DOUBLE
+CFLAGS := -flto -fopenmp -O3 -Os -march=native -mtune=native -D_NDEBUG -DPERFECT_MATCHING_DOUBLE
CXX = clang++
LD = ld.lld
LIBS := -lrt