Created
November 19, 2020 23:36
-
-
Save pinkeen/9f040c26876004b251766abec4a108cc to your computer and use it in GitHub Desktop.
VSCode Include Paths for OSX to fix the freaking missing builtins intellisense error (stdarg, stbool)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"C_Cpp.default.systemIncludePath": [ | |
"/Library/Developer/CommandLineTools/usr/include/", | |
"/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/", | |
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/", | |
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment