Issue
I can compile a C++ code from ubuntu terminal with lapack library as
$g++ -lstdc++ -o fast_solver fast_solver.cpp -llapack
My question is if I want to use Netbeans IDE to compile the same code how do I configure Netbeans? More specifically, how do I ask Netbeans to compile with -lstdc++
and -llapack
options?
Thank you in advance.
Best, Geek
Solution
All you need (including compilers) comes in that NetBeans IDE package.
I would suggest that you read this guide which will show you how to create a new project and run code.
Its pretty easy.
In NetBeans IDE press F1 for more documentation.
Answered By - handlerFive
Answer Checked By - Candace Johnson (JavaFixing Volunteer)