Re: Why is building a cross compiler "out-of-the-box" always broken?

2007-08-19 Thread Paolo Bonzini
Thanks for reminding me to ping that patch. Could you try moving this case statement + case "$target" in + i[[3456]]86-*-elf* | i[[3456]]86-*-coff*) + libgloss_dir=i386 + ;; + m68hc11-*-* | m6811-*-* | m68hc12-*-* | m6812-*-*) + libgloss_

[Tuples]Is struct gimple_statement_lable shoud be a member of union gimple_statement_d?

2007-08-19 Thread 张小平
hello , Diego Novillo and everyone in gcc mailist. I am a Chinese developer and learing the project tuples(represent gimple as tuple). When i translanting the document 《Tuples Representation for GIMPLE》 into Chinese, i found that the struct gimple_statement_lable is not a member of u

compiler chain on AIX

2007-08-19 Thread Ed S. Peschko
All, I was wondering - what's the current status of the gcc compiler chain on AIX? I need to build a bunch of open source tools on AIX, but I see from the following site: http://www.ibm.com/developerworks/aix/library/au-gnu.html 'You cannot use the GNU linker on AIX as this w

Re: Why is building a cross compiler "out-of-the-box" always broken?

2007-08-19 Thread Steve Kenton
OK, let me recap as I understand the discussion up to now, realizing that this is the gcc list we can really only hope to fix things, if needed, by making changes to the gcc project. Other project will have other priorities. It sounds like the consensus is that bootstrapping a cross-compiler

Re: Why is building a cross compiler "out-of-the-box" always broken?

2007-08-19 Thread Segher Boessenkool
4. Use the minimal cross-compiler produced in step 3 to configure glibc and do "make install-headers" to get glibc headers. At this point you should be able to delete the minimal cross-compiler, it's job has been done. 5. Make distclean and then configure, make, and install a normal gcc cross

Register Numbers during machine dependent reorg?

2007-08-19 Thread Balaji V. Iyer
Hello Everyone, I am currently working with MIPS port of gcc-4.0.2 by using segmented register files (like a multi-core approach). This is what i would like to do: I would like to assign instructions whose destination registers are between 0 to 7 to core 1, 8-15 to core 2 and so forth. I woul

Re: Why is building a cross compiler "out-of-the-box" always broken?

2007-08-19 Thread Steve Kenton
Thanks, I git cloned buildall and it sure looks simple (now that you have made it work) :-! Although, that combination of options was not exactly obvious at first glance. Time to re-read all the config --help stuff. I'll try it on my build system at work tomorrow and see what bites me next. I

GCC cpp to mips! Help Please!

2007-08-19 Thread Derrick Washington
Hello My name is Derrick Washington and and brand new to GCC, and I need some information on how to convert c++ code to files which I can load into the ram on my MIPs processor. I have been looking over the manuels and they are of no help and I need help on this one. I have attached the

Re: Why is building a cross compiler "out-of-the-box" always broken?

2007-08-19 Thread Segher Boessenkool
Thanks, I git cloned buildall and it sure looks simple (now that you have made it work) :-! Good to see it is useful to more people than just me :-) Although, that combination of options was not exactly obvious at first glance. Heh. Almost all of it is just "disable what we don't need". OT