summaryrefslogtreecommitdiffhomepage
path: root/dev/Boot/Mod/SysChk/amd64.json
blob: 2c079889895d1b0ea50ed8b7dae6b4d32a85f237 (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
{
  "compiler_path": "x86_64-w64-mingw32-g++",
  "compiler_std": "c++20",
  "headers_path": ["../", "../../", "../../../Kernel", "../../../", "./"],
  "sources_path": ["*.cc", "*.S", "../../src/HEL/AMD64/*.cc", "../../src/HEL/AMD64/*.S", "../../src/*.cc"],
  "output_name": "syschk.sys",
  "compiler_flags": [
    "-ffreestanding",
    "-nostdlib",
    "-std=c++20",
    "-fPIC",
    "-fno-rtti",
    "-fno-exceptions",
    "-Wl,--subsystem=17,--image-base,0x10000000,-e,ModuleMain"
  ],
  "cpp_macros": [
    "__MINOSKRNL__",
    "__ZBAOSLDR__",
    "__BOOTLDR_STANDALONE__",
    "__ZKA_AMD64__",
    "kChkVersionHighest=0x0100",
    "kChkVersionLowest=0x0100",
    "kChkVersion=0x0100"
  ]
}