* [U-Boot] uboot on microblaze, compilation error
@ 2010-03-17 18:36 Horst Gall
2010-03-17 19:16 ` Wolfgang Denk
2010-03-17 23:08 ` Mike Frysinger
0 siblings, 2 replies; 15+ messages in thread
From: Horst Gall @ 2010-03-17 18:36 UTC (permalink / raw)
To: u-boot
Hi,
I try to compile an actual version of u-boot for xilinx microblaze.
The linker ends with the error-message:
... mb-ld.real:u-boot.lds:1: parse error
In u-boot main-directory I found the file 'u-boot.lds':
OUTPUT_ARCH(1)
ENTRY(_start)
...
cpu/1/start.o (.text)
...
When I change the "1" to "microblaze" it works:
OUTPUT_ARCH(microblaze)
ENTRY(_start)
...
cpu/microblaze/start.o (.text)
...
After "make ...config" my modification is overwritten.
How can I fix this problem?
Best regards
Horst Gall
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-17 18:36 [U-Boot] uboot on microblaze, compilation error Horst Gall
@ 2010-03-17 19:16 ` Wolfgang Denk
2010-03-17 23:08 ` Mike Frysinger
1 sibling, 0 replies; 15+ messages in thread
From: Wolfgang Denk @ 2010-03-17 19:16 UTC (permalink / raw)
To: u-boot
Dear "Horst Gall",
In message <001701cac601$5a380c50$c801a8c0@xeon> you wrote:
>
> I try to compile an actual version of u-boot for xilinx microblaze.
> The linker ends with the error-message:
>
> ... mb-ld.real:u-boot.lds:1: parse error
>
> In u-boot main-directory I found the file 'u-boot.lds':
>
> OUTPUT_ARCH(1)
> ENTRY(_start)
> ...
> cpu/1/start.o (.text)
> ...
>
> When I change the "1" to "microblaze" it works:
The linker script is run through the C preprocessor. Obviously your
toolchain auto-defines "microblaze" as "1".
> How can I fix this problem?
Fix your toolchain. "microblaze" is not a reserved identified, and
your toolchain is not supposed to mess with it.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Once they go up, who cares where they come down? That's not my
department." - Werner von Braun
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-17 18:36 [U-Boot] uboot on microblaze, compilation error Horst Gall
2010-03-17 19:16 ` Wolfgang Denk
@ 2010-03-17 23:08 ` Mike Frysinger
2010-03-18 9:29 ` Michal Simek
1 sibling, 1 reply; 15+ messages in thread
From: Mike Frysinger @ 2010-03-17 23:08 UTC (permalink / raw)
To: u-boot
On Wednesday 17 March 2010 14:36:38 Horst Gall wrote:
> Hi,
>
> I try to compile an actual version of u-boot for xilinx microblaze.
> The linker ends with the error-message:
>
> ... mb-ld.real:u-boot.lds:1: parse error
>
> In u-boot main-directory I found the file 'u-boot.lds':
>
> OUTPUT_ARCH(1)
> ENTRY(_start)
> ...
> cpu/1/start.o (.text)
> ...
>
> When I change the "1" to "microblaze" it works:
>
> OUTPUT_ARCH(microblaze)
> ENTRY(_start)
> ...
> cpu/microblaze/start.o (.text)
> ...
>
>
> After "make ...config" my modification is overwritten.
> How can I fix this problem?
add "#undef microblaze" to the top of board/xilinx/microblaze-generic/u-
boot.lds
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100317/e3100f28/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-17 23:08 ` Mike Frysinger
@ 2010-03-18 9:29 ` Michal Simek
2010-03-19 1:11 ` Mike Frysinger
0 siblings, 1 reply; 15+ messages in thread
From: Michal Simek @ 2010-03-18 9:29 UTC (permalink / raw)
To: u-boot
Mike Frysinger wrote:
> On Wednesday 17 March 2010 14:36:38 Horst Gall wrote:
>> Hi,
>>
>> I try to compile an actual version of u-boot for xilinx microblaze.
>> The linker ends with the error-message:
>>
>> ... mb-ld.real:u-boot.lds:1: parse error
>>
>> In u-boot main-directory I found the file 'u-boot.lds':
>>
>> OUTPUT_ARCH(1)
>> ENTRY(_start)
>> ...
>> cpu/1/start.o (.text)
>> ...
>>
>> When I change the "1" to "microblaze" it works:
>>
>> OUTPUT_ARCH(microblaze)
>> ENTRY(_start)
>> ...
>> cpu/microblaze/start.o (.text)
>> ...
>>
>>
>> After "make ...config" my modification is overwritten.
>> How can I fix this problem?
>
> add "#undef microblaze" to the top of board/xilinx/microblaze-generic/u-
> boot.lds
Mike is right. I expect you are using toolchain from EDK where the
problem is. Linux toolchain are ok.
Michal
> -mike
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
--
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-18 9:29 ` Michal Simek
@ 2010-03-19 1:11 ` Mike Frysinger
2010-03-19 7:21 ` Michal Simek
2010-03-21 20:00 ` Wolfgang Denk
0 siblings, 2 replies; 15+ messages in thread
From: Mike Frysinger @ 2010-03-19 1:11 UTC (permalink / raw)
To: u-boot
On Thursday 18 March 2010 05:29:19 Michal Simek wrote:
> Mike Frysinger wrote:
> > On Wednesday 17 March 2010 14:36:38 Horst Gall wrote:
> >> I try to compile an actual version of u-boot for xilinx microblaze.
> >>
> >> The linker ends with the error-message:
> >> ... mb-ld.real:u-boot.lds:1: parse error
> >>
> >> In u-boot main-directory I found the file 'u-boot.lds':
> >> OUTPUT_ARCH(1)
> >> ENTRY(_start)
> >> ...
> >> cpu/1/start.o (.text)
> >> ...
> >>
> >> When I change the "1" to "microblaze" it works:
> >> OUTPUT_ARCH(microblaze)
> >> ENTRY(_start)
> >> ...
> >> cpu/microblaze/start.o (.text)
> >> ...
> >>
> >> After "make ...config" my modification is overwritten.
> >> How can I fix this problem?
> >
> > add "#undef microblaze" to the top of board/xilinx/microblaze-generic/u-
> > boot.lds
>
> Mike is right. I expect you are using toolchain from EDK where the
> problem is. Linux toolchain are ok.
i dont think the toolchain is broken. this is standard gcc behavior for all
arches. i would check the microblaze gcc port, but it doesnt seem to be
mainlined at gcc.gnu.org, so ive lost interest.
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100318/1faf3d82/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-19 1:11 ` Mike Frysinger
@ 2010-03-19 7:21 ` Michal Simek
2010-03-19 16:59 ` Mike Frysinger
2010-03-21 20:00 ` Wolfgang Denk
1 sibling, 1 reply; 15+ messages in thread
From: Michal Simek @ 2010-03-19 7:21 UTC (permalink / raw)
To: u-boot
Mike Frysinger wrote:
> On Thursday 18 March 2010 05:29:19 Michal Simek wrote:
>> Mike Frysinger wrote:
>>> On Wednesday 17 March 2010 14:36:38 Horst Gall wrote:
>>>> I try to compile an actual version of u-boot for xilinx microblaze.
>>>>
>>>> The linker ends with the error-message:
>>>> ... mb-ld.real:u-boot.lds:1: parse error
>>>>
>>>> In u-boot main-directory I found the file 'u-boot.lds':
>>>> OUTPUT_ARCH(1)
>>>> ENTRY(_start)
>>>> ...
>>>> cpu/1/start.o (.text)
>>>> ...
>>>>
>>>> When I change the "1" to "microblaze" it works:
>>>> OUTPUT_ARCH(microblaze)
>>>> ENTRY(_start)
>>>> ...
>>>> cpu/microblaze/start.o (.text)
>>>> ...
>>>>
>>>> After "make ...config" my modification is overwritten.
>>>> How can I fix this problem?
>>> add "#undef microblaze" to the top of board/xilinx/microblaze-generic/u-
>>> boot.lds
>> Mike is right. I expect you are using toolchain from EDK where the
>> problem is. Linux toolchain are ok.
>
> i dont think the toolchain is broken. this is standard gcc behavior for all
> arches. i would check the microblaze gcc port, but it doesnt seem to be
> mainlined at gcc.gnu.org, so ive lost interest.
Michael Eager takes care about. There is official updated branch at
http://gcc.gnu.org/viewcvs/branches/microblaze/
He is trying to add it to mainline repo but AFAIF he wasn't successful
yet. I don't know how gcc community works but it seems to me a little
closed.
Michal
> -mike
--
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-19 7:21 ` Michal Simek
@ 2010-03-19 16:59 ` Mike Frysinger
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2010-03-19 16:59 UTC (permalink / raw)
To: u-boot
On Friday 19 March 2010 03:21:08 Michal Simek wrote:
> Mike Frysinger wrote:
> > On Thursday 18 March 2010 05:29:19 Michal Simek wrote:
> >> Mike Frysinger wrote:
> >>> On Wednesday 17 March 2010 14:36:38 Horst Gall wrote:
> >>>> I try to compile an actual version of u-boot for xilinx microblaze.
> >>>>
> >>>> The linker ends with the error-message:
> >>>> ... mb-ld.real:u-boot.lds:1: parse error
> >>>>
> >>>> In u-boot main-directory I found the file 'u-boot.lds':
> >>>> OUTPUT_ARCH(1)
> >>>> ENTRY(_start)
> >>>> ...
> >>>> cpu/1/start.o (.text)
> >>>> ...
> >>>>
> >>>> When I change the "1" to "microblaze" it works:
> >>>> OUTPUT_ARCH(microblaze)
> >>>> ENTRY(_start)
> >>>> ...
> >>>> cpu/microblaze/start.o (.text)
> >>>> ...
> >>>>
> >>>> After "make ...config" my modification is overwritten.
> >>>> How can I fix this problem?
> >>>
> >>> add "#undef microblaze" to the top of
> >>> board/xilinx/microblaze-generic/u- boot.lds
> >>
> >> Mike is right. I expect you are using toolchain from EDK where the
> >> problem is. Linux toolchain are ok.
> >
> > i dont think the toolchain is broken. this is standard gcc behavior for
> > all arches. i would check the microblaze gcc port, but it doesnt seem
> > to be mainlined at gcc.gnu.org, so ive lost interest.
>
> Michael Eager takes care about. There is official updated branch at
> http://gcc.gnu.org/viewcvs/branches/microblaze/
> He is trying to add it to mainline repo but AFAIF he wasn't successful
> yet. I don't know how gcc community works but it seems to me a little
> closed.
a quick glance shows that it no longer defines "microblaze" ... or i missed it
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100319/de20be99/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-19 1:11 ` Mike Frysinger
2010-03-19 7:21 ` Michal Simek
@ 2010-03-21 20:00 ` Wolfgang Denk
2010-03-21 22:20 ` Mike Frysinger
1 sibling, 1 reply; 15+ messages in thread
From: Wolfgang Denk @ 2010-03-21 20:00 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <201003182111.28112.vapier@gentoo.org> you wrote:
>
> i dont think the toolchain is broken. this is standard gcc behavior for all
> arches. ...
You are wrong here. It _is_ a bug of the toolchain if it auto-defines
random unreserved identifiers. This is NOT standard GCC behaviour.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
An Elephant is a mouse with an Operating System. - Knuth
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-21 20:00 ` Wolfgang Denk
@ 2010-03-21 22:20 ` Mike Frysinger
2010-03-21 22:45 ` Wolfgang Denk
0 siblings, 1 reply; 15+ messages in thread
From: Mike Frysinger @ 2010-03-21 22:20 UTC (permalink / raw)
To: u-boot
On Sunday 21 March 2010 16:00:29 Wolfgang Denk wrote:
> Mike Frysinger wrote:
> > i dont think the toolchain is broken. this is standard gcc behavior for
> > all arches. ...
>
> You are wrong here. It _is_ a bug of the toolchain if it auto-defines
> random unreserved identifiers. This is NOT standard GCC behaviour.
they arent random, it's the arch-specific identifier. and most arches do
exactly that with gcc. try actually looking at the builtins provided by x86,
mips, and powerpc to mention just a few.
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100321/9db016b0/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-21 22:20 ` Mike Frysinger
@ 2010-03-21 22:45 ` Wolfgang Denk
2010-03-22 6:54 ` Mike Frysinger
0 siblings, 1 reply; 15+ messages in thread
From: Wolfgang Denk @ 2010-03-21 22:45 UTC (permalink / raw)
To: u-boot
Dear Mike,
In message <201003211820.51966.vapier@gentoo.org> you wrote:
>
> > You are wrong here. It _is_ a bug of the toolchain if it auto-defines
> > random unreserved identifiers. This is NOT standard GCC behaviour.
>
> they arent random, it's the arch-specific identifier. and most arches do
> exactly that with gcc. try actually looking at the builtins provided by x86,
> mips, and powerpc to mention just a few.
As far as I can tell these are neither part of the Standard Predefined
Macros nor of the Common Predefined Macros, so these can only be part
of the System-Specific Predefined Macros.
And the C standard requires that all System-Specific Macros be part
of the _reserved_namespace_ (i. e. the names must begin with two
underscores, or an underscore and a capital letter).
So if a C compiler auto-defines something as "arm", or "i386", or
"microblaze", then it is NOT standard-conforming - bare with me if I
simply call this broken.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
There are two ways of constructing a software design. One way is to
make it so simple that there are obviously no deficiencies and the
other is to make it so complicated that there are no obvious defi-
ciencies. - Charles Anthony Richard Hoare
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-21 22:45 ` Wolfgang Denk
@ 2010-03-22 6:54 ` Mike Frysinger
2010-03-22 11:18 ` Wolfgang Denk
0 siblings, 1 reply; 15+ messages in thread
From: Mike Frysinger @ 2010-03-22 6:54 UTC (permalink / raw)
To: u-boot
On Sunday 21 March 2010 18:45:51 Wolfgang Denk wrote:
> Mike wrote:
> > > You are wrong here. It _is_ a bug of the toolchain if it auto-defines
> > > random unreserved identifiers. This is NOT standard GCC behaviour.
> >
> > they arent random, it's the arch-specific identifier. and most arches do
> > exactly that with gcc. try actually looking at the builtins provided by
> > x86, mips, and powerpc to mention just a few.
>
> As far as I can tell these are neither part of the Standard Predefined
> Macros nor of the Common Predefined Macros, so these can only be part
> of the System-Specific Predefined Macros.
>
> And the C standard requires that all System-Specific Macros be part
> of the _reserved_namespace_ (i. e. the names must begin with two
> underscores, or an underscore and a capital letter).
>
> So if a C compiler auto-defines something as "arm", or "i386", or
> "microblaze", then it is NOT standard-conforming - bare with me if I
> simply call this broken.
that may be, but if that is what the gcc maintainer has decided, then
complaining about it wont fix code like u-boot. after all, u-boot hasnt told
gcc that it wants strict preprocessor behavior (i.e. using something like -
ansi). if it did, then gcc wouldnt have output any non-prefixed defines.
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100322/362cf416/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-22 6:54 ` Mike Frysinger
@ 2010-03-22 11:18 ` Wolfgang Denk
2010-03-22 21:29 ` Mike Frysinger
0 siblings, 1 reply; 15+ messages in thread
From: Wolfgang Denk @ 2010-03-22 11:18 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <201003220254.05158.vapier@gentoo.org> you wrote:
>
> > So if a C compiler auto-defines something as "arm", or "i386", or
> > "microblaze", then it is NOT standard-conforming - bare with me if I
> > simply call this broken.
>
> that may be, but if that is what the gcc maintainer has decided, then
> complaining about it wont fix code like u-boot. after all, u-boot hasnt told
Complaining about it might help to accelerate fixes which are already
in the works. GCC documentation reads:
We are slowly phasing out all predefined macros which are
outside the reserved namespace. You should never use them in
new programs, and we encourage you to correct older code to
use the parallel macros whenever you find it.
Complaining might make the "slowwly" a little faster. Not complaining
certainly does not help at all.
> gcc that it wants strict preprocessor behavior (i.e. using something like -
> ansi). if it did, then gcc wouldnt have output any non-prefixed defines.
Maybe we should do that?
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
It is a good thing for an uneducated man to read books of quotations.
- Sir Winston Churchill _My Early Life_ ch. 9
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-22 11:18 ` Wolfgang Denk
@ 2010-03-22 21:29 ` Mike Frysinger
2010-03-22 21:39 ` Wolfgang Denk
0 siblings, 1 reply; 15+ messages in thread
From: Mike Frysinger @ 2010-03-22 21:29 UTC (permalink / raw)
To: u-boot
On Monday 22 March 2010 07:18:52 Wolfgang Denk wrote:
> Mike Frysinger wrote:
> > > So if a C compiler auto-defines something as "arm", or "i386", or
> > > "microblaze", then it is NOT standard-conforming - bare with me if I
> > > simply call this broken.
> >
> > that may be, but if that is what the gcc maintainer has decided, then
> > complaining about it wont fix code like u-boot. after all, u-boot hasnt
> > told
>
> Complaining about it might help to accelerate fixes which are already
> in the works. GCC documentation reads:
>
> We are slowly phasing out all predefined macros which are
> outside the reserved namespace. You should never use them in
> new programs, and we encourage you to correct older code to
> use the parallel macros whenever you find it.
>
> Complaining might make the "slowwly" a little faster. Not complaining
> certainly does not help at all.
perhaps, but it doesnt make projects compile any better, and i'd be suspicious
of how long it's actually going to take for that to become a reality. gcc has
behaved this way for years, and i dont see any sign of it changing (it hasnt
even started issuing warnings).
> > gcc that it wants strict preprocessor behavior (i.e. using something like
> > - ansi). if it did, then gcc wouldnt have output any non-prefixed
> > defines.
>
> Maybe we should do that?
looks like we already do, and you added it for precisely this reason (Aug
2009). i guess the OP is using an older version of u-boot which is why it's
still a problem for him ?
kind of makes this whole thread pointless noise ... sorry about that
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100322/4bfdffdf/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-22 21:29 ` Mike Frysinger
@ 2010-03-22 21:39 ` Wolfgang Denk
2010-03-22 21:53 ` Mike Frysinger
0 siblings, 1 reply; 15+ messages in thread
From: Wolfgang Denk @ 2010-03-22 21:39 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <201003221729.07522.vapier@gentoo.org> you wrote:
>
> perhaps, but it doesnt make projects compile any better, and i'd be suspicious
> of how long it's actually going to take for that to become a reality. gcc has
> behaved this way for years, and i dont see any sign of it changing (it hasnt
> even started issuing warnings).
And during these years, how many bug reports did you file?
It is people with your attitude who are to blame for this state.
Hey, this is community work. If you submit a patch and the respective
maintainer or somebody else rejects it for some reason or another,
what will you do? If you want to have this patch included you
negotiate and co-operate.
If a tool is broken what do you do? You give up and don't even attempt
to provide useful feedback.
There are tons of examples of really stupid developments all around
because people don't even attempt to fix the problems at the origin,
but rather accept it "gcc has always behaved like that".
Sorry for my uproariousness, but this really gets on my nerves.
> > Maybe we should do that?
>
> looks like we already do, and you added it for precisely this reason (Aug
> 2009). i guess the OP is using an older version of u-boot which is why it's
> still a problem for him ?
Yes, that's what I guess, too.
> kind of makes this whole thread pointless noise ... sorry about that
Me too.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Disobedience: The silver lining to the cloud of servitude.
- Ambrose Bierce
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] uboot on microblaze, compilation error
2010-03-22 21:39 ` Wolfgang Denk
@ 2010-03-22 21:53 ` Mike Frysinger
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2010-03-22 21:53 UTC (permalink / raw)
To: u-boot
On Monday 22 March 2010 17:39:04 Wolfgang Denk wrote:
> Mike Frysinger wrote:
> > perhaps, but it doesnt make projects compile any better, and i'd be
> > suspicious of how long it's actually going to take for that to become a
> > reality. gcc has behaved this way for years, and i dont see any sign of
> > it changing (it hasnt even started issuing warnings).
>
> And during these years, how many bug reports did you file?
>
> It is people with your attitude who are to blame for this state.
that depends on your POV. i dont personally have a problem with this
behavior, so no, ive never submitted a bug. i'm guessing you have ? :p
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100322/c0c6bdff/attachment.pgp
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2010-03-22 21:53 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-17 18:36 [U-Boot] uboot on microblaze, compilation error Horst Gall
2010-03-17 19:16 ` Wolfgang Denk
2010-03-17 23:08 ` Mike Frysinger
2010-03-18 9:29 ` Michal Simek
2010-03-19 1:11 ` Mike Frysinger
2010-03-19 7:21 ` Michal Simek
2010-03-19 16:59 ` Mike Frysinger
2010-03-21 20:00 ` Wolfgang Denk
2010-03-21 22:20 ` Mike Frysinger
2010-03-21 22:45 ` Wolfgang Denk
2010-03-22 6:54 ` Mike Frysinger
2010-03-22 11:18 ` Wolfgang Denk
2010-03-22 21:29 ` Mike Frysinger
2010-03-22 21:39 ` Wolfgang Denk
2010-03-22 21:53 ` Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox