summaryrefslogtreecommitdiffhomepage
path: root/dev/HPFS/hpfs.json
diff options
context:
space:
mode:
Diffstat (limited to 'dev/HPFS/hpfs.json')
-rw-r--r--dev/HPFS/hpfs.json30
1 files changed, 20 insertions, 10 deletions
diff --git a/dev/HPFS/hpfs.json b/dev/HPFS/hpfs.json
index 3a13297b..a7ba778e 100644
--- a/dev/HPFS/hpfs.json
+++ b/dev/HPFS/hpfs.json
@@ -1,11 +1,21 @@
{
- "compiler_path": "rustc",
- "compiler_std": "",
- "sources_path": ["Sources/*.rs"],
- "output_name": "hpfs.sys",
- "compiler_flags": [
- ],
- "cpp_macros": [
- ]
- }
- \ No newline at end of file
+ "compiler_path": "x86_64-w64-mingw32-g++",
+ "compiler_std": "c++20",
+ "headers_path": ["../"],
+ "sources_path": ["Sources/*.cxx"],
+ "output_name": "hpfs.sys",
+ "compiler_flags": [
+ "-fPIC",
+ "-ffreestanding",
+ "-shared",
+ "-fno-rtti",
+ "-fno-exceptions",
+ "-Wl,--subsystem=17"
+ ],
+ "cpp_macros": [
+ "__HPFS_IMPL__",
+ "cHPFSVersion=0x0100",
+ "cHPFSVersionHighest=0x0100",
+ "cHPFSVersionLowest=0x0100"
+ ]
+}