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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{ "defaults":
{ "type": ["CC", "defaults"]
, "arguments_config": ["OS", "ARCH", "TARGET_ARCH"]
, "base": [["@", "base", "CC", "defaults"]]
, "ADD_CFLAGS":
{ "type": "++"
, "$1":
[ ["-std=gnu17"]
, { "type": "let*"
, "bindings":
[ [ "OS"
, { "type": "var"
, "name": "OS"
, "default":
{"type": "fail", "msg": "Required variable 'OS' is not set."}
}
]
, [ "ARCH"
, { "type": "var"
, "name": "ARCH"
, "default":
{"type": "fail", "msg": "Required variable 'ARCH' is not set."}
}
]
, [ "PLATFORM"
, { "type": "join"
, "separator": "_"
, "$1":
[ {"type": "var", "name": "OS"}
, { "type": "var"
, "name": "TARGET_ARCH"
, "default": {"type": "var", "name": "ARCH"}
}
]
}
]
, [ "posix_copts"
, [ "-Wa,--noexecstack"
, "-D_XOPEN_SOURCE=700"
, "-Wall"
, "-Wformat=2"
, "-Wsign-compare"
, "-Wmissing-field-initializers"
, "-Wwrite-strings"
, "-Wshadow"
, "-Wno-unknown-warning-option"
, "-Wno-array-parameter"
, "-Wno-unused-but-set-variable"
, "-fno-common"
]
]
]
, "body":
{ "type": "cond"
, "cond":
[ [ { "type": "or"
, "$1":
[ { "type": "=="
, "$1": {"type": "var", "name": "PLATFORM"}
, "$2": "linux_ppc64le"
}
, { "type": "=="
, "$1": {"type": "var", "name": "PLATFORM"}
, "$2": "linux_x86_64"
}
, { "type": "=="
, "$1": {"type": "var", "name": "PLATFORM"}
, "$2": "mac_x86_64"
}
]
}
, {"type": "var", "name": "posix_copts"}
]
, [ { "type": "=="
, "$1": {"type": "var", "name": "PLATFORM"}
, "$2": "windows_x86_64"
}
, ["-DWIN32_LEAN_AND_MEAN", "-DOPENSSL_NO_ASM"]
]
]
, "default": ["-DOPENSSL_NO_ASM"]
}
}
]
}
}
}
|