From 507b3a76de36e41bdfd1c14d94a397990b26a423 Mon Sep 17 00:00:00 2001 From: Amlal Date: Fri, 6 Sep 2024 09:38:00 +0200 Subject: [ IMP ] A first set of software patches regarding the OS kernel and it's components. Signed-off-by: Amlal --- dev/HPFS/hpfs.json | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) (limited to 'dev/HPFS/hpfs.json') 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" + ] +} -- cgit v1.2.3