summaryrefslogtreecommitdiffhomepage
path: root/common.mk
blob: ccacd6c9447d71105470e7ad8e6817eefd3470d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
CXX=clang++-14

ifeq ($(shell which $(CXX)),)
CXX=clang++-13
endif

ifeq ($(shell which $(CXX)),)
CXX=clang++-10
endif

ifeq ($(shell which $(CXX)),)
CXX=clang++
endif

ifeq ($(shell which $(CXX)),)
CXX=g++-9
endif

ifeq ($(shell which $(CXX)),)
CXX=g++
endif

ifeq ($(CXXFLAGS),)
CXXFLAGS=-g -O2
endif

CXXFLAGS+=-Wall -fPIE -Wpedantic -gdwarf-4
LDFLAGS+=-pie

ifeq ($(CXX),g++-9)
CXXFLAGS+=-std=c++17
else
CXXFLAGS+=-std=c++20
endif

ifeq ($(CXX),clang++-10)
LIBS+=-fuse-ld=lld-10 -lstdc++
else ifeq ($(CXX),clang++-14)
LIBS+=-fuse-ld=lld-14 -lc++ -lc++abi
else
LIBS+=-lstdc++ -lstdc++fs
endif

CXXFLAGS+=$(shell pkg-config --cflags qrcodegencpp Magick++ fmt sqlite3)
LIBS+=-lfcgi -lboost_filesystem
LIBS+=$(shell pkg-config --libs qrcodegencpp Magick++ fmt sqlite3) -lSQLiteCpp