summaryrefslogtreecommitdiffhomepage
path: root/common.mk
blob: 5a71acc5b1e575af088fdfebcd28edf4c0bde734 (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
48
49
50
51
52
53
CXX=g++-10
#CXX=clang++-10

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

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

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

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

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

#ifeq ($(CXXFLAGS),)
CXXFLAGS=-O2 -g -DNDEBUG
#CXXFLAGS=-O0 -g -D_DEBUG
#endif
# -fprofile-instr-generate -fcoverage-mapping
# gcc:--coverage

CXXFLAGS+=-Wall -I.

CXXFLAGS+=-pthread
ifeq ($(CXX),clang++-10)
CXXFLAGS+=-std=c++20 #-stdlib=libc++
else
CXXFLAGS+=-std=c++17
endif

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