diff -urN atlas-3.8.3.p16/patches/probe_comp.c atlas-3.8.3.p17/patches/probe_comp.c
old
|
new
|
|
534 | 534 | sp = (ptrbits == 64) ? "-maix64" : "-maix32"; |
535 | 535 | else if (arch == IA64Itan2) |
536 | 536 | printf("Itanium2 - not setting -m64"); // -m64 is not supported on RHEL 5/Itanium |
| 537 | #ifndef __ARM__ |
537 | 538 | else if (ptrbits == 64) |
538 | 539 | sp = "-m64"; |
539 | 540 | else if (ptrbits == 32) |
540 | 541 | sp = "-m32"; |
| 542 | #endif |
541 | 543 | return(sp); |
542 | 544 | } |
543 | 545 | char *GetStandardCompName(char *comp) |
diff -urN atlas-3.8.3.p16/patches/SpewMakeInc.c atlas-3.8.3.p17/patches/SpewMakeInc.c
old
|
new
|
|
365 | 365 | return(sp); |
366 | 366 | else if (OS == OSAIX) |
367 | 367 | sp = (ptrbits == 64) ? "-maix64" : "-maix32"; |
| 368 | #ifndef __ARM__ |
368 | 369 | else if (ptrbits == 64) |
369 | 370 | sp = "-m64"; |
370 | 371 | else if (ptrbits == 32) |
371 | 372 | sp = "-m32"; |
| 373 | #endif |
372 | 374 | return(sp); |
373 | 375 | } |
374 | 376 | |