From 4199393153f5eb25032d69300655975030663276 Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Sat, 13 Mar 2021 11:12:29 +0100 Subject: [PATCH] make: c++14 and -O2 --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 288592c..8ff2887 100644 --- a/makefile +++ b/makefile @@ -1,8 +1,8 @@ debug: test.cpp magyarsort.h - g++ test.cpp -g -o test.out + g++ test.cpp -g -std=c++14 -o test.out release: test.cpp magyarsort.h - g++ test.cpp -o test.out + g++ test.cpp -o -std=c++14 -O2 test.out clean: test.out rm test.out