Silvio a Beccara wrote:
Dear list friends,
I think this might have been asked already, but I can't find the correct answer in the archives. How does one go about compiling GCC 3.4.3 together with GCC on a 64 bit dual-core Athlon? Here's my cpuinfo information:
processor : 1 vendor_id : AuthenticAMD cpu family : 15 model : 35 model name : AMD Athlon(tm) 64 X2 Dual Core Processor 4400+
<snip>
I already tried, but without success, this configure setting:
./configure --enable-languages=pascal --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --enable-shared
and I can attach, if needed, the make logfile. I hope you can help me.
For GPC dual core processor is just a multi-processor machine. In fact the build should work essentialy the same as on a single processor Athlon. What matters is if you want to have a 32-bit compiler or a 64-bit one (ATM, if you want to have both you must build them (at least RTS) separately). The configure line above chooses 32-bit compiler. For native 64-bit compiler the following should work:
./configure --enable-languages=pascal make bootstap
If this does not work for you post log around the first error (in doubt it is better to post more).