summaryrefslogtreecommitdiffhomepage
path: root/src/CompilerKit/ck-osx-san.json
blob: c0913aa0964a63677bf634b5d902d8a57a5c73ab (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
{
  "compiler_path": "clang++",
  "compiler_std": "c++20",
  "headers_path": [
    "../../include/CompilerKit",
    "../../include/",
    "../../include/CompilerKit/src/",
    "../../include/CompilerKit/src/impl",
    "/opt/homebrew/Cellar/boost/1.89.0/include"
  ],
  "sources_path": [
    "src/*.cc",
    "src/*/*.cc"
  ],
  "output_name": "/usr/local/lib/libCompilerKit.dylib",
  "compiler_flags": [
    "-fPIC",
    "-shared",
    "-fstack-protector-all",
    "-fno-omit-frame-pointer",
    "-g",
    "-fsanitize=address",
    "-fsanitize=undefined"
  ],
  "cpp_macros": [
    "__NECTI__=202505",
    "CK_USE_STRUCTS=1",
    "kDistReleaseBranch=$(git rev-parse --abbrev-ref HEAD)-$(uuidgen)"
  ]
}