diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 20:07:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-08 20:07:31 +0100 |
| commit | b9993cec648b6b3f49cc97e022ab365f4e41c5da (patch) | |
| tree | 2897f115d4c8ca59db397e19801883ece3f8c466 /src/libPOSIXWrapper/libPOSIX.json | |
| parent | 5201ce2c1f1bc69c86223a9bc46e661a565b2739 (diff) | |
| parent | 60dd6dc956cbc9db70b5c2ad2996ca5a2b863e61 (diff) | |
Merge pull request #134 from ne-foss-org/kernel-level-tweaks
[CHORE] Kernel modules updates.
Diffstat (limited to 'src/libPOSIXWrapper/libPOSIX.json')
| -rw-r--r-- | src/libPOSIXWrapper/libPOSIX.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libPOSIXWrapper/libPOSIX.json b/src/libPOSIXWrapper/libPOSIX.json new file mode 100644 index 00000000..a38d1db9 --- /dev/null +++ b/src/libPOSIXWrapper/libPOSIX.json @@ -0,0 +1,24 @@ +{ + "compiler_path": "x86_64-w64-mingw32-gcc", + "compiler_std": "c++20", + "headers_path": ["../", "./"], + "sources_path": ["src/*.cpp"], + "output_name": "libPOSIX.dll", + "compiler_flags": [ + "-ffreestanding", + "-shared", + "-std=c++20", + "-fno-rtti", + "-fno-exceptions", + "-Wl,--subsystem=17" + ], + "cpp_macros": [ + "__NEOSKRNL__", + "__POSIX_AMD64__", + "__POSIX_SOURCE__", + "kPosixVersionHighest=0x0100", + "kPosixVersionLowest=0x0100", + "kPosixVersion=0x0100" + ], + "description": "The NeKernel POSIX port." +} |
