Introducing LunaBuild to the build flow (#36)
[lunaix-os.git] / lunaix-os / .vscode / c_cpp_properties.json
index 10acdd8538f3f7df731520218f0314c8b35480d3..a0c612f030d2a9cbec741841cb814332b5f5e1d9 100644 (file)
@@ -3,13 +3,19 @@
         {
             "name": "OS-DEV",
             "includePath": [
-                "${workspaceFolder}/includes/**"
+                "${workspaceFolder}/includes",
+                "${workspaceFolder}/includes/usr",
+                "${workspaceFolder}/usr/includes",
+                "${workspaceFolder}/arch/i386/includes",
             ],
             "compilerArgs": [
-                "-ffreestanding"
+                "-ffreestanding",
+                "-D__ARCH__=i386",
+                "-D__LUNAIXOS_DEBUG__",
+                "-include .builder/configs.h"
             ],
             "defines": [],
-            "compilerPath": "${HOME}/opt/cross-compiler/bin/i686-elf-gcc",
+            "compilerPath": "${HOME}/opt/i686-gcc-12/bin/i686-elf-gcc",
             "cStandard": "gnu99",
             "intelliSenseMode": "gcc-x86"
         }