From 78a1d5d1aabcd069592e44c5690f057cf1730a6e Mon Sep 17 00:00:00 2001 From: Albert S Date: Thu, 21 Feb 2019 10:51:07 +0100 Subject: [PATCH] Makefile: do not hard code g++ version. On ancient systems left up to user to set it properly... --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cf519d1..6529996 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,7 @@ CXXFLAGS=-std=c++17 -O0 -g -no-pie -pipe -MMD -Wall -Wextra RELEASE_CXXFLAGS=-std=c++17 -O3 -pipe -MMD -Wall -Wextra LDFLAGS=-lsqlite3 -lpthread -lcrypto -lboost_regex -lstdc++fs -#currently default g++ versions in most distros do not usually support c++17 well enough -CXX=g++-8.2.0 +CXX=g++ SOURCES=$(wildcard *.cpp)