Skip to content Skip to sidebar Skip to footer

Gcc Compiler Not Recognizing -fno-plt Option

I am trying to compile QuantLib Python SWIG bindings on Amazon's EC2 instance with Amazon Linux AMI. I have managed to compile QuantLib itself successfully, however, when trying to

Solution 1:

You need to upgrade your GCC version.

The changelog page for GCC 6 says:

The option -fno-plt is now fully functional.

Thus, from GCC 6 you can use it.

Post a Comment for "Gcc Compiler Not Recognizing -fno-plt Option"