Setting up different compilerPath for C and Cpp #11848
Answered
by
bobbrow
wytsai7660
asked this question in
Q&A
|
Hello, I'm struggling with setting up different compiler paths for C and C++. "compilerPath": ["/opt/homebrew/bin/gcc-13", "/opt/homebrew/bin/g++-13"]I got an error: So what's the correct way to handle this? |
Answered by
bobbrow
Jan 9, 2024
Replies: 1 comment 1 reply
|
With the right arguments, gcc can forward compilation to g++. Our extension can take care of this part for IntelliSense, so setting compilerPath to |
1 reply
Answer selected by
wytsai7660
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the right arguments, gcc can forward compilation to g++. Our extension can take care of this part for IntelliSense, so setting compilerPath to
"/opt/homebrew/bin/gcc-13"should work. If not, please let us know as that would be a bug.