summaryrefslogtreecommitdiffhomepage
path: root/dev/libSystem/libSystem.json
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-27 20:03:26 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-27 20:06:13 +0200
commit1a44b4385b3250cd90e255d7d787ae69e987544b (patch)
treefb637575951b8cc98834bed59daf4072583d5a17 /dev/libSystem/libSystem.json
parentbdc831c1df0dd2af95f09fd1b86b4472c40d12b7 (diff)
feat: generic_kits: Add X64Chrono inside BenchKit.
refactor: libSystem: Refactored as a whole. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/libSystem/libSystem.json')
-rw-r--r--dev/libSystem/libSystem.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/dev/libSystem/libSystem.json b/dev/libSystem/libSystem.json
new file mode 100644
index 00000000..fdcd2a56
--- /dev/null
+++ b/dev/libSystem/libSystem.json
@@ -0,0 +1,20 @@
+{
+ "compiler_path": "x86_64-w64-mingw32-g++",
+ "compiler_std": "c++20",
+ "headers_path": ["../", "./"],
+ "sources_path": ["src/*.cc", "src/*.stub.obj"],
+ "output_name": "libSystem.sys",
+ "compiler_flags": [
+ "-ffreestanding",
+ "-shared",
+ "-fPIC",
+ "-fno-rtti",
+ "-fno-exceptions",
+ "-Wl,--subsystem=17"
+ ],
+ "cpp_macros": [
+ "kLibSystemVersion=0x0100",
+ "kLibSystemVersionHighest=0x0100",
+ "kLibSystemVersionLowest=0x0100"
+ ]
+}