This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


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

Re: gcc-4.3.3 and coldfire


On Sun, Jun 21, 2009 at 3:39 AM, Franzi Edo.<edo.franzi@ukos.ch> wrote:
> Hi All,
> I am trying to move from the gcc-4.2.4 to the gcc-4.3.3 version. I would
> like to generate compiler versions for cpu32 and for coldfire (m5234).
> My toolchain running with the 4.2.4 works fine for both cpus. The version
> 4.3.3 works fine only for cpu32, and I noticed that something is wrong with
> the library location. I had to change the file t-m68kelf in order to have a
> multilib and to have a fPIC libraries. Here is the t-m68kelf that works fine
> for the 4.2.4 version:
>
> LIB1ASMSRC = m68k/lb1sf68.asm
> LIB1ASMFUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
> Â _double _float _floatex \
> Â _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
> Â _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
>
> LIB2FUNCS_EXTRA = fpgnulib.c xfgnulib.c
>
> fpgnulib.c: $(srcdir)/config/m68k/fpgnulib.c
> Â Â Â Âcp $(srcdir)/config/m68k/fpgnulib.c fpgnulib.c
> xfgnulib.c: $(srcdir)/config/m68k/fpgnulib.c
> Â Â Â Âecho '#define EXTFLOAT' > xfgnulib.c
> Â Â Â Âcat $(srcdir)/config/m68k/fpgnulib.c >> xfgnulib.c
>
> MULTILIB_OPTIONS = m528x/mcpu32 m68881/msoft-float
> MULTILIB_OPTIONS += fPIC
> MULTILIB_DIRNAMES =
> MULTILIB_MATCHES = mcpu32=m68332
> MULTILIB_EXCEPTIONS = m528x/m68881 m528x/msoft-float \
> Â Â Â Â Â Â Â Â Â Âmcpu32/m68881 mcpu32/msoft-float
> LIBGCC = stmp-multilib
> INSTALL_LIBGCC = install-multilib
>
> Here is the same file I modified for the version 4.3.3
>
> LIB1ASMSRC = m68k/lb1sf68.asm
> LIB1ASMFUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
> Â _double _float _floatex \
> Â _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
> Â _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
>
> LIB2FUNCS_EXTRA = fpgnulib.c xfgnulib.c
>
> fpgnulib.c: $(srcdir)/config/m68k/fpgnulib.c
> Â Â Â Âcp $(srcdir)/config/m68k/fpgnulib.c fpgnulib.c
> xfgnulib.c: $(srcdir)/config/m68k/fpgnulib.c
> Â Â Â Âecho '#define EXTFLOAT' > xfgnulib.c
> Â Â Â Âcat $(srcdir)/config/m68k/fpgnulib.c >> xfgnulib.c
>

The above is also included through t-floatlib fragment so you
do not need to add it into  t-m68kelf

> # Custom multilibs for uKOS
>
> M68K_MLIB_CPU += && (match(MLIB, "^68") \
> Â Â Â Â Â Â Â Â Â Â || MLIB == "cpu32" \
> Â Â Â Â Â Â Â Â Â Â || MLIB == "5206" \
> Â Â Â Â Â Â Â Â Â Â || MLIB == "5235" \
> Â Â Â Â Â Â Â Â Â Â || MLIB == "528x")
>
> M68K_MLIB_DIRNAMES = msoft-float fPIC
> M68K_MLIB_OPTIONS = msoft-float fPIC

Should this be M68K_MLIB_OPTIONS = msoft-float/fPIC

> MULTILIB_DIRNAMES = msoft-float fPIC
> MULTILIB_OPTIONS = msoft-float fPIC

these are not needed I think.

> LIBGCC = stmp-multilib
> INSTALL_LIBGCC = install-multilib
>
> Now, when I compile for cpu32 in the .map file I can see that gcc points to
> the right libraries, but this is not the case for the coldfire version:
> Here is what I get:
>
> OK for cpu32:
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/../../../../m68k-elf/lib/mcpu32/fPIC/libc.a
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/mcpu32/fPIC/libgcc.a
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/../../../../m68k-elf/lib/mcpu32/fPIC/libc.a
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/mcpu32/fPIC/libgcc.a
>
> Not OK for coldfire:
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/../../../../m68k-elf/lib/libc.a
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/m5206/fPIC/libgcc.a
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/../../../../m68k-elf/lib/libc.a
> LOAD
> /Users/Shared/cross/gcc-4.3.3/m68k-elf/lib/gcc/m68k-elf/4.3.3/m5206/fPIC/libgcc.a
> ÂHere, in the first and the third line the m5206 is missed. Another problem
> is that gcc wants to use the m5206 instead of the m528x as forced in the
> makefile.
>
> Any ideas for helping me with the coldfire cores?
> Regards
> ÂEdo.
>
>
>
> --
> For unsubscribe information see http://sourceware.org/lists.html#faq
>
>

--
For unsubscribe information see http://sourceware.org/lists.html#faq


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