blob: 59bb09f6da18dc5afe1f30620ced07a4680799ea (
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
54
55
56
57
58
59
60
61
|
macro_name CLANG
binary_name clang++
compile_option "-c "
output_to_option "-o "
add_include_dir_option -I
add_lib_dir_option -L
add_lib_option -l
lang_flags "-D_REENTRANT -std=c++11"
maintainer_warning_flags "-Werror"
warning_flags "-Wextra -Wall"
makefile_style unix
lib_opt_flags "-O3"
app_opt_flags "-O2"
shared_flags "-fPIC"
debug_flags "-g"
no_debug_flags ""
visibility_build_flags "-fvisibility=hidden"
visibility_attribute '__attribute__((visibility("default")))'
<so_link_flags>
# The default works for GNU ld and several other Unix linkers
default -> "$(CXX) -shared -fPIC -Wl,-soname,$(SONAME)"
darwin -> "$(CXX) -dynamiclib -fPIC -install_name $(LIBDIR)/$(SONAME)"
</so_link_flags>
<isa_flags>
sse2 -> "-msse2"
ssse3 -> "-mssse3"
sse4.1 -> "-msse4.1"
sse4.2 -> "-msse4.2"
avx2 -> "-mavx2"
bmi2 -> "-mbmi2"
aesni -> "-maes"
clmul -> "-mpclmul"
rdrand -> "-mrdrnd"
sha -> "-msha"
</isa_flags>
<mach_opt>
x86_64 -> "-march=SUBMODEL"
nehalem -> "-march=corei7"
sandybridge -> "-march=corei7-avx"
ivybridge -> "-march=core-avx-i"
</mach_opt>
<mach_abi_linking>
#all -> "-stdlib=libc++ -pthread"
all -> "-stdlib=libstdc++ -pthread"
x86_64 -> "-m64"
ppc64 -> "-m64"
netbsd -> "-D_NETBSD_SOURCE"
</mach_abi_linking>
|