Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Microsoft C++ compiler with NetBeans?

I was wondering whether it's possible to use Microsoft's C++ compiler and linker with NetBeans IDE? If so, what's the best way of doing it.

P.S. I'm not interested in Mingw.

EDIT: Is it possible to get NetBeans to do error parsing (so that I can click on error and have NetBeans open the right file), intellisense, etc? I know NetBeans can work with g++ make files. Why not with nmake?

like image 373
Filip Frącz Avatar asked Mar 18 '09 19:03

Filip Frącz


People also ask

How can I download C compiler in NetBeans?

Let's open https://netbeans.org/downloads/ and click on the download button under the "C/C++" section. Note: If you plan on programming in other languages, e.g. Java, download the "all" NetBeans bundle. Install it (just keep clicking "Next") and run it.

Is NetBeans good for C?

you can use codeblocks it is also a well and exceptionally good for c/c++.

Does NetBeans have a compiler?

Unlike Eclipse (which uses its own Eclipse Java Compiler), Netbeans actually uses the internal API of javac for compiling, syntax highlighting, and error detection.


1 Answers

I am currently writing a plugin/toolchain to use Visual C++ on Netbeans.
You can find the project called VCC4N on source forge or on NetBeans plugins.

like image 164
Maxime Viargues Avatar answered Sep 28 '22 13:09

Maxime Viargues