From cbf1ba38794ab6a323441dcc3b0e5e942f7ab386 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sun, 1 Jan 2023 14:53:05 +0100 Subject: Added CompiledSQL class, Test coverage --- common.mk | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'common.mk') diff --git a/common.mk b/common.mk index 9da602e..ccacd6c 100644 --- a/common.mk +++ b/common.mk @@ -34,17 +34,11 @@ CXXFLAGS+=-std=c++20 endif ifeq ($(CXX),clang++-10) -LIBS+= \ --fuse-ld=lld-10 \ --lstdc++ -#-lc++ \ -#-lc++abi -#-lc++fs -#-lstdc++fs +LIBS+=-fuse-ld=lld-10 -lstdc++ +else ifeq ($(CXX),clang++-14) +LIBS+=-fuse-ld=lld-14 -lc++ -lc++abi else -LIBS+= \ --lstdc++ \ --lstdc++fs +LIBS+=-lstdc++ -lstdc++fs endif CXXFLAGS+=$(shell pkg-config --cflags qrcodegencpp Magick++ fmt sqlite3) -- cgit v1.2.3