blob: 0af44768b82cae48e5a51138613ead8b71d2c037 (
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
|
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"
warning_flags "-Wextra -Wall"
makefile_style unix
lib_opt_flags "-O3"
check_opt_flags "-O2"
shared_flags "-fPIC"
debug_flags "-g -fno-inline-functions"
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>
"aes-ni" -> "-maes"
"ssse3" -> "-mssse3"
"sse2" -> "-msse2"
</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"
x86_64 -> "-m64"
ppc64 -> "-m64"
netbsd -> "-D_NETBSD_SOURCE"
</mach_abi_linking>
|