summaryrefslogtreecommitdiff
path: root/.vscode/c_cpp_properties.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/c_cpp_properties.json')
-rw-r--r--.vscode/c_cpp_properties.json37
1 files changed, 37 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
new file mode 100644
index 0000000..3aa0c3c
--- /dev/null
+++ b/.vscode/c_cpp_properties.json
@@ -0,0 +1,37 @@
+{
+ "configurations": [
+ {
+ "name": "Linux",
+ "includePath": [
+ "${workspaceFolder}/**",
+ "include",
+ ".",
+ "lib/ultralib/include",
+ "lib/ultralib/include/PR"
+ ],
+ "defines": [
+ "NON_EQUIVALENT",
+ "NON_MATCHING",
+ "AVOID_UB",
+ "CC_CHECK=1",
+ "_LANGUAGE_C",
+ "F3DEX_GBI_2",
+ "_MIPS_SZLONG=32",
+ "NDEBUG",
+ "_FINALROM",
+ "__USE_ISOC99",
+ "__mips__"
+ ],
+ "browse": {
+ "limitSymbolsToIncludedHeaders": true
+ },
+ "compilerPath": "/usr/bin/clang",
+ "intelliSenseMode": "linux-clang-x86",
+ "compilerArgs": [
+ "-m32"
+ ],
+ "cStandard": "gnu89"
+ }
+ ],
+ "version": 4
+}