refactor: separate syscall interfaces from kernel space, into posix compliant structure.
[lunaix-os.git] / lunaix-os / .vscode / c_cpp_properties.json
index 10acdd8538f3f7df731520218f0314c8b35480d3..c68b4c707b47f8732525c3186b1c8253c6b996fa 100644 (file)
@@ -3,10 +3,13 @@
         {
             "name": "OS-DEV",
             "includePath": [
-                "${workspaceFolder}/includes/**"
+                "${workspaceFolder}/includes"
             ],
             "compilerArgs": [
-                "-ffreestanding"
+                "-ffreestanding",
+                "-D__ARCH_IA32",
+                "-D__LUNAIXOS_DEBUG__",
+                "-include flags.h"
             ],
             "defines": [],
             "compilerPath": "${HOME}/opt/cross-compiler/bin/i686-elf-gcc",