From c31db4d2a870ab6e796bc164b212725ad20fd9c6 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Fri, 20 Oct 2023 13:35:18 -0400 Subject: [PATCH] remove march native for now --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index fe566e2..9583aa1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,7 +7,7 @@ build: build-supplemental g++ main.cpp --std=c++20 -g -o ./anthracite build-release: build-supplemental - g++ main.cpp --std=c++20 -O3 -march=native -o ./anthracite + g++ main.cpp --std=c++20 -O3 -o ./anthracite build-docker: docker build . -t anthracite