[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [MiNT] [PATCH] Removing 020/v4e suffixes + math-68881.h
On Wed, 2011-02-09 at 21:07 +0100, Miro Kropáček wrote:
> Hi,
>
>
> this is a small patch reflecting Vincent's changes / findings. I think
> we don't need this stuff anymore in mintlib.
This has broken the GCC build.
In /usr/include/math.h we still have this....
#if defined(__GNUC_INLINE__) && (!defined(NO_INLINE_MATH)) &&
(defined(_M68881) || defined(__M68881__))
# define _INLINE_MATH 1
#else
# define _INLINE_MATH 0
#endif
#if _INLINE_MATH
# include <bits/math-68881.h>
#endif
Which if _INLINE_MATH is defined we don't have math-68881.h installed
anymore.
What is the right fix here ?
Alan.