This is the mail archive of the gcc@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]

Re: build problem on linux


In article <200012071830.KAA29556@kankakee.wrs.com> you write:

>make[4]: *** [ios.lo] Error 1
>
>
>49:
>      case space:
>	__ret = isspace(__c);
>	break;
>
>64:
>      case alpha:
>	__ret = isalpha(__c);
>	break;
>
>:-(  It built on Dec 5th.  I couldn't begin to guess.

There are actually two issues:

1. For some reason your Linux box is being configured to use generic
   bits instead of those bits optimized for Linux.

   I know this because the code that failed to compile for you is from
   config/os/generic/bits/ctype_inline.h instead of
   config/os/gnu-linux/bits/ctype_noninline.h.

   If you care about this, then you will have to debug some to
   understand why this is happening on your particular platform.

2. There is a minor bug in config/os/generic/bits/ctype_base.h
   as patched last night just after midnight.  I will submit the
   patch in a moment.

Regards,
Loren
-- 
Loren J. Rittle
Staff Software Engineer, Distributed Object Technology Lab
Networks and Infrastructure Research Lab (IL02/2240), Motorola Labs
rittle@rsch.comm.mot.com, KeyID: 2048/ADCE34A5, FDC0292446937F2A240BC07D42763672

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