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+ stepping : 2 cpu MHz : 2211.354 cache size : 1024 KB physical id : 0 siblings : 2 core id : 1 cpu cores : 2 fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext f xsr_opt lm 3dnowext 3dnow pni lahf_lm cmp_legacy bogomips : 4430.51 TLB size : 1024 4K pages clflush size : 64 cache_alignment : 64 address sizes : 40 bits physical, 48 bits virtual power management: ts fid vid ttp
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. Kind regards
Silvio a Beccara
--
Email.it, the professional e-mail, gratis per te: http://www.email.it/f
Sponsor:
Refill s.r.l. - Cartucce compatibili e kit di ricarica per tutti i modelli di stampante. Acquista al telefono o online: consegna in tutta Italia in 48 ore!
Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=5190&d=20-6
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).