From b3dfc99a0ac690cf3de2348a8887bfa4bef243bc Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 31 Mar 2025 15:21:56 +0200 Subject: dev/user: user.sys shall be the main component which handles syscalls, as a DDK driver. Signed-off-by: Amlal El Mahrouss --- dev/user/libsci.json | 20 -------------------- dev/user/user.json | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 dev/user/libsci.json create mode 100644 dev/user/user.json (limited to 'dev/user') diff --git a/dev/user/libsci.json b/dev/user/libsci.json deleted file mode 100644 index ed9a8739..00000000 --- a/dev/user/libsci.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compiler_path": "x86_64-w64-mingw32-g++", - "compiler_std": "c++20", - "headers_path": ["../", "./"], - "sources_path": ["src/*.cc", "src/*.o"], - "output_name": "libuser.dylib", - "compiler_flags": [ - "-fPIC", - "-ffreestanding", - "-shared", - "-fno-rtti", - "-fno-exceptions", - "-Wl,--subsystem=17" - ], - "cpp_macros": [ - "kSCIVersion=0x0100", - "kSCIVersionHighest=0x0100", - "kSCIVersionLowest=0x0100" - ] -} diff --git a/dev/user/user.json b/dev/user/user.json new file mode 100644 index 00000000..481280f8 --- /dev/null +++ b/dev/user/user.json @@ -0,0 +1,20 @@ +{ + "compiler_path": "x86_64-w64-mingw32-g++", + "compiler_std": "c++20", + "headers_path": ["../", "./"], + "sources_path": ["src/*.cc", "src/*.o"], + "output_name": "user.sys", + "compiler_flags": [ + "-fPIC", + "-ffreestanding", + "-shared", + "-fno-rtti", + "-fno-exceptions", + "-Wl,--subsystem=17" + ], + "cpp_macros": [ + "kSCIVersion=0x0100", + "kSCIVersionHighest=0x0100", + "kSCIVersionLowest=0x0100" + ] +} -- cgit v1.2.3