Remove unnecessary -lquadmath from FORTRAN flags.

This commit is contained in:
Jussi Pakkanen 2018-08-31 00:27:00 +03:00
parent 73a5b4332d
commit 3d86a24b55
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ class GnuFortranCompiler(GnuCompiler, FortranCompiler):
return ['-J' + path]
def language_stdlib_only_link_flags(self):
return ['-lgfortran', '-lm', '-lquadmath']
return ['-lgfortran', '-lm']
class ElbrusFortranCompiler(GnuFortranCompiler, ElbrusCompiler):