2004-06-09 Andrew Pinski <pinskia@physics.uc.edu>
* g++spec.c (lang_specific_driver): Remove check for -lm
and -lmath when check it see if it was the math library.
From-SVN: r82843
+2004-06-09 Andrew Pinski <pinskia@physics.uc.edu>
+
+ * g++spec.c (lang_specific_driver): Remove check for -lm
+ and -lmath when check it see if it was the math library.
+
2004-06-08 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/7841
{
library = -1;
}
- else if (strcmp (argv[i], "-lm") == 0
- || strcmp (argv[i], "-lmath") == 0
- || strcmp (argv[i], MATH_LIBRARY) == 0
- )
+ else if (strcmp (argv[i], MATH_LIBRARY) == 0)
{
args[i] |= MATHLIB;
need_math = 0;