How do we use/support our own cross compilers with vscode #11992
Replies: 2 comments 2 replies
-
Hi @ganiger143 . This is the repo for the C/C++ language service extension for VS Code. If you're referring to (editor) language services, such as IntelliSense, the C/C++ Extension is able to interrogate most clang and gcc based compilers, by passing standard arguments to solicit a list of system includes and predefined macros. If your compilers are clang or gcc based, it's possible they may be supported when specified in a If you're referring to use with a build system, that is not something that VS Code or the C/C++ extension provides directly. There are several extensions such as CMake Tools, Makefile Tools, which provide build system integration (and can also be used to provide IntelliSense configurations to the C/C++ Extension). |
Beta Was this translation helpful? Give feedback.
-
Hm, if you are using your custom toolchains (compiler, linker, binutils, etc), then I don't get why you need them to be recognized by Microsoft toolchain? But if you just want to use VSCODE as an editor (with Intellisense) to develop and build your cross compiled C/C++ code, then you can apply the same approach I am using these days. Install following extensions:
Once you install
|
Beta Was this translation helpful? Give feedback.
-
We have our own cross compilers and wanted to be recognized by the microsoft C/C++ toolchain for compiling c/c++ programs. How do we do that?
Beta Was this translation helpful? Give feedback.
All reactions