I use ajunta as an IDE,in order not to have to manually type the commands in the terminal to compile and execute the programs,so I can do it in lss than 5 seconds just pressing F11 + F3 .

The problem is that I noticed gcc has a problem with the math library(not the header),so when you use functions like pow(),if you don't include the -lm as an argument for compilation,it won't compile,returning "undefined reference to pow".

How can I add -lm as a default argument for compilation in ajunta,in order to still be able to compile/run it fast?Or if someone knows any other way to make the compilation work that doesn't need to add -lm.

Thanks.
GuilhermeBrant