hi,
I just copied some c files from a unix machin to my ibook. After using installing xtools(which provided me gcc and gmake), I thought I was able to compile my program.
Unfortunately It gave the following errors
chundongchau$ make
gcc -o ../Run/boltzmann boltzmann.o -lm
/usr/bin/ld: boltzmann.o bad magic number (not a Mach-O file)
collect2: ld returned 1 exit status
make: *** [boltzmann] Error 1
How can I solve this?
I also tried to compile another file, but then it complained about the
-march=pentium
what do I have to type instead of pentium?
Thanks in advance
cdc