blob: 123c593e6057e08afebd37cbffbcd7d2faba7963 (
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
|
macro_name MSVC
binary_name cl
compile_option "/nologo /c "
output_to_option "/Fo"
add_include_dir_option "/I"
add_lib_dir_option -L
add_lib_option ""
compile_flags_release "/O2"
compile_flags_debug "/Od /Zi /DDEBUG"
app_opt_flags_release "/D_CONSOLE"
app_opt_flags_debug "/D_CONSOLE"
lang_flags "/EHs /GR"
warning_flags "/W3 /wd4275 /wd4267"
visibility_build_flags "/DBOTAN_DLL=__declspec(dllexport)"
visibility_attribute "__declspec(dllimport)"
ar_command lib
makefile_style nmake
<isa_flags>
sse2 -> ""
ssse3 -> ""
sse4.1 -> ""
sse4.2 -> ""
x86_64:avx2 -> ""
bmi2 -> ""
aesni -> ""
clmul -> ""
rdrand -> ""
</isa_flags>
<so_link_flags>
default -> "$(CXX) /LD"
</so_link_flags>
<mach_abi_linking>
all -> "/MD"
all-debug -> "/MDd"
</mach_abi_linking>
|