This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


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

RE: GoAhead Webserver 2.1



On 17-Nov-2000 amassa@cts.com wrote:
> I don't know if you had a chance to look at this post before - so I'm
> resending it just in case.  Thanks for taking a look.
> 
> Why the  :(  about the latest tools.  Which are you referring to?

It was just a mild comment about all of these new sections.  Stuff that
we had to explicitly support in eCos.

> 
> I checked the powerpc.ld file with the one in cvs and they are identical. 
> So, I am using your current patch but still have the
> problem.  Any other suggestions - I would appreciate that.
> 
>> /tools/H-i686-pc-cygwin/powerpc-eabi/bin/ld: warning: no memory region
>> specified
>>  for section `.sbss43'

Your file 'hal/powerpc/arch/current/src/powerpc.ld' should contain this
snippet:

#define SECTION_sbss(_region_, _vma_, _lma_)                     \
    .sbss _vma_ : _lma_                                                         \
    { __sbss_start = ABSOLUTE (.);                                        \
    __SBSS_START__ = ABSOLUTE(.); *(.sbss.*) __SBSS_END__ = ABSOLUTE(.);   \
    __SBSSx_START__ = ABSOLUTE(.); *(.sbss*) __SBSSx_END__ = ABSOLUTE(.);\
    *(.scommon*)                                                          \
    __sbss_end = ABSOLUTE (.); }                                          \
    > _region_

With this in place, I don't see how you can get the error above.

Have you tried 'make clean; make' after doing your CVS update?

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