* [U-Boot-Users] Could somebody help me
@ 2005-06-03 11:32 刘涛
2005-06-03 11:43 ` [U-Boot-Users] " Catalin Marinas
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: 刘涛 @ 2005-06-03 11:32 UTC (permalink / raw)
To: u-boot
I use SCB9328 like board.I got the error blow when I make u-boot use the
make command
arm-linux-gcc -g -Os -fno-strict-aliasing -fno-common -ffixed-r8
-mshort-load-bytes -msoft-float -D__KERNEL__ -DTEXT_BASE=0x08f00000
-I/home/arm/src/u-boot-1.1.2/include -fno-builtin -ffreestanding
-nostdinc -isystem
/home/arm/crosstool/arm-linux/gcc-3.4.3-glibc-2.3.3/lib/gcc/arm-linux/3.4.3/include
-pipe -DCONFIG_ARM -D__ARM__ -mapcs-32 -march=armv4 -Wall
-Wstrict-prototypes -c -o stubs.o stubs.c
cc1: error: invalid option `short-load-bytes'
make[1]: *** [stubs.o] error 1
make[1]: Leaving directory `/home/arm/src/u-boot-1.1.2/examples'
make: *** [examples] error 2
^ permalink raw reply [flat|nested] 5+ messages in thread* [U-Boot-Users] Re: Could somebody help me
2005-06-03 11:32 [U-Boot-Users] Could somebody help me 刘涛
@ 2005-06-03 11:43 ` Catalin Marinas
2005-06-03 11:47 ` [U-Boot-Users] " richard at uclinux.net
2005-06-03 15:09 ` Wolfgang Denk
2 siblings, 0 replies; 5+ messages in thread
From: Catalin Marinas @ 2005-06-03 11:43 UTC (permalink / raw)
To: u-boot
?? <cntaor@gmail.com> wrote:
> I use SCB9328 like board.I got the error blow when I make u-boot use
> the make command
>
>
> arm-linux-gcc -g -Os -fno-strict-aliasing -fno-common -ffixed-r8
> -mshort-load-bytes -msoft-float -D__KERNEL__ -DTEXT_BASE=0x08f00000
> -I/home/arm/src/u-boot-1.1.2/include -fno-builtin -ffreestanding
> -nostdinc -isystem
> /home/arm/crosstool/arm-linux/gcc-3.4.3-glibc-2.3.3/lib/gcc/arm-linux/3.4.3/include
> -pipe -DCONFIG_ARM -D__ARM__ -mapcs-32 -march=armv4 -Wall
> -Wstrict-prototypes -c -o stubs.o stubs.c
> cc1: error: invalid option `short-load-bytes'
> make[1]: *** [stubs.o] error 1
> make[1]: Leaving directory `/home/arm/src/u-boot-1.1.2/examples'
> make: *** [examples] error 2
-mshort-load-bytes is no longer available in the compiler you use
(gcc-2.4.0 or newer). You can use -malignment-traps instead.
--
Catalin
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] Could somebody help me
2005-06-03 11:32 [U-Boot-Users] Could somebody help me 刘涛
2005-06-03 11:43 ` [U-Boot-Users] " Catalin Marinas
@ 2005-06-03 11:47 ` richard at uclinux.net
2005-06-03 15:09 ` Wolfgang Denk
2 siblings, 0 replies; 5+ messages in thread
From: richard at uclinux.net @ 2005-06-03 11:47 UTC (permalink / raw)
To: u-boot
> I use SCB9328 like board.I got the error blow when I make u-boot use the
> make command
>
>
> arm-linux-gcc -g -Os -fno-strict-aliasing -fno-common -ffixed-r8
> -mshort-load-bytes -msoft-float -D__KERNEL__ -DTEXT_BASE=0x08f00000
> -I/home/arm/src/u-boot-1.1.2/include -fno-builtin -ffreestanding
> -nostdinc -isystem
> /home/arm/crosstool/arm-linux/gcc-3.4.3-glibc-2.3.3/lib/gcc/arm-linux/3.4.3/include
> -pipe -DCONFIG_ARM -D__ARM__ -mapcs-32 -march=armv4 -Wall
> -Wstrict-prototypes -c -o stubs.o stubs.c
> cc1: error: invalid option `short-load-bytes'
> make[1]: *** [stubs.o] error 1
> make[1]: Leaving directory `/home/arm/src/u-boot-1.1.2/examples'
> make: *** [examples] error 2
>
How about asking Dr. Google who displays on first result page:
http://gcc.gnu.org/ml/gcc-patches/1999-11n/msg00649.html
Or search the u-boot archive which says:
> This has been discussed before, please see the archives.
>
> There was (yet another) an incompatible change in GCC. If you provide
> a patch that supports both old and new versions of GCC I'll be happy
> to add it.
>
> Best regards,
>
> Wolfgang Denk
Is searching so damned difficult these days? (o;
best regards
rick
^ permalink raw reply [flat|nested] 5+ messages in thread* [U-Boot-Users] Could somebody help me
2005-06-03 11:32 [U-Boot-Users] Could somebody help me 刘涛
2005-06-03 11:43 ` [U-Boot-Users] " Catalin Marinas
2005-06-03 11:47 ` [U-Boot-Users] " richard at uclinux.net
@ 2005-06-03 15:09 ` Wolfgang Denk
2 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2005-06-03 15:09 UTC (permalink / raw)
To: u-boot
In message <42A03FE9.6050902@gmail.com> you wrote:
> I use SCB9328 like board.I got the error blow when I make u-boot use the
> make command
>
>
> arm-linux-gcc -g -Os -fno-strict-aliasing -fno-common -ffixed-r8
> -mshort-load-bytes -msoft-float -D__KERNEL__ -DTEXT_BASE=0x08f00000
> -I/home/arm/src/u-boot-1.1.2/include -fno-builtin -ffreestanding
> -nostdinc -isystem
> /home/arm/crosstool/arm-linux/gcc-3.4.3-glibc-2.3.3/lib/gcc/arm-linux/3.4.3/include
> -pipe -DCONFIG_ARM -D__ARM__ -mapcs-32 -march=armv4 -Wall
> -Wstrict-prototypes -c -o stubs.o stubs.c
> cc1: error: invalid option `short-load-bytes'
> make[1]: *** [stubs.o] error 1
> make[1]: Leaving directory `/home/arm/src/u-boot-1.1.2/examples'
> make: *** [examples] error 2
You are using an incompatible toolchain (gcc-3.4 is not supported by
U-Boot yet).
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Flight Reservation systems decide whether or not you exist. If your
information isn't in their database, then you simply don't get to go
anywhere." - Arthur Miller
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] Could somebody help me
@ 2005-06-03 12:55 Paugam Luc
0 siblings, 0 replies; 5+ messages in thread
From: Paugam Luc @ 2005-06-03 12:55 UTC (permalink / raw)
To: u-boot
And what about reading the error text reported by gcc:
cc1: error: invalid option `short-load-bytes'
It is clear enough!
Regards - Luc
-----Original Message-----
From: u-boot-users-admin@lists.sourceforge.net
[mailto:u-boot-users-admin at lists.sourceforge.net] On Behalf Of
richard at uclinux.net
Sent: vendredi 3 juin 2005 13:47
To: u-boot-users at lists.sourceforge.net
Subject: Re: [U-Boot-Users] Could somebody help me
> I use SCB9328 like board.I got the error blow when I make u-boot use
the
> make command
>
>
> arm-linux-gcc -g -Os -fno-strict-aliasing -fno-common
-ffixed-r8
> -mshort-load-bytes -msoft-float -D__KERNEL__
-DTEXT_BASE=0x08f00000
> -I/home/arm/src/u-boot-1.1.2/include -fno-builtin -ffreestanding
> -nostdinc -isystem
>
/home/arm/crosstool/arm-linux/gcc-3.4.3-glibc-2.3.3/lib/gcc/arm-linux/3.
4.3/include
> -pipe -DCONFIG_ARM -D__ARM__ -mapcs-32 -march=armv4 -Wall
> -Wstrict-prototypes -c -o stubs.o stubs.c
> cc1: error: invalid option `short-load-bytes'
> make[1]: *** [stubs.o] error 1
> make[1]: Leaving directory `/home/arm/src/u-boot-1.1.2/examples'
> make: *** [examples] error 2
>
How about asking Dr. Google who displays on first result page:
http://gcc.gnu.org/ml/gcc-patches/1999-11n/msg00649.html
Or search the u-boot archive which says:
> This has been discussed before, please see the archives.
>
> There was (yet another) an incompatible change in GCC. If you provide
> a patch that supports both old and new versions of GCC I'll be happy
> to add it.
>
> Best regards,
>
> Wolfgang Denk
Is searching so damned difficult these days? (o;
best regards
rick
-------------------------------------------------------
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=fad-ysdn-ostg-q22005
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-06-03 15:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-03 11:32 [U-Boot-Users] Could somebody help me 刘涛
2005-06-03 11:43 ` [U-Boot-Users] " Catalin Marinas
2005-06-03 11:47 ` [U-Boot-Users] " richard at uclinux.net
2005-06-03 15:09 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2005-06-03 12:55 Paugam Luc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox