This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/39971] kinds.h fails at building libgfortran



------- Comment #14 from fxcoudert at gcc dot gnu dot org  2009-05-07 20:11 -------
Another thing you might want to do is change libgfortran.h in your source to
replace this:

#if HAVE_COMPLEX_H
# include <complex.h>
#else
#define complex __complex__
#endif

with this:

# include <complex.h>
#undef complex
#define complex __complex__

or this:

#undef complex
#define complex __complex__


Please try the two and report here whether any of those worked.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39971


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]