Compilter Linker flags?
Posted: Thu Jun 09, 2016 6:18 am
HI there
You have a really nice IDE. Thanks for creating. I am following the instruction to dynamically load classes into a C++ project.
http://stackoverflow.com/questions/4966 ... y-on-linux
Here are the g++ compiler commands:
Under the project setting, how I do I apply the separate g++ commands with each having their own set of compiler and linker flags? Is this possible to batch in Codelite?
Thanks
You have a really nice IDE. Thanks for creating. I am following the instruction to dynamically load classes into a C++ project.
http://stackoverflow.com/questions/4966 ... y-on-linux
Here are the g++ compiler commands:
Code: Select all
g++ -fPIC -shared myclass.cc -o myclass.so
g++ class_user.cc -ldl -o class_user
Thanks