-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig_example.json
More file actions
45 lines (45 loc) · 981 Bytes
/
config_example.json
File metadata and controls
45 lines (45 loc) · 981 Bytes
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
{
"target_folder_path": "FA-Binary-Patches",
"input_exe_path": "ForgedAlliance_base.exe",
"output_exe_path": "C:\\ProgramData\\FAForever\\bin\\ForgedAlliance_exxt.exe",
"clang": "clang++.exe",
"gcc": "g++.exe",
"linker": "ld.exe",
"clang_flags": [
"-pipe",
"-m32",
"-O3",
"-nostdlib",
"-Werror",
"-masm=intel",
"-std=c++20",
"-march=core2"
],
"gcc_flags": [
"-pipe",
"-m32",
"-Os",
"-fno-exceptions",
"-nostdlib",
"-nostartfiles",
"-fpermissive",
"-masm=intel",
"-std=c++20",
"-march=core2",
"-mfpmath=both"
],
"asm_flags": [
"-pipe",
"-m32",
"-Os",
"-fno-exceptions",
"-nostdlib",
"-nostartfiles",
"-w",
"-fpermissive",
"-masm=intel",
"-std=c++20",
"-march=core2",
"-mfpmath=both"
]
}