e70425
--- CONFIG/include/atlconf.h	2011-05-14 13:33:24.000000000 -0400
e70425
+++ CONFIG/include/atlconf.h.new	2011-08-30 14:25:41.427136391 -0400
e70425
@@ -16,7 +16,7 @@
e70425
 
e70425
 enum ARCHFAM {AFOther=0, AFPPC, AFSPARC, AFALPHA, AFX86, AFIA64, AFMIPS};
e70425
 
e70425
-#define NMACH 37
e70425
+#define NMACH 38
e70425
 static char *machnam[NMACH] =
e70425
    {"UNKNOWN", "POWER3", "POWER4", "POWER5", "PPCG4", "PPCG5",
e70425
     "POWER6", "POWER7",
e70425
@@ -25,7 +25,7 @@
e70425
     "Efficeon", "K7", "HAMMER", "AMD64K10h", "UNKNOWNx86",
e70425
     "IA64Itan", "IA64Itan2",
e70425
     "USI", "USII", "USIII", "USIV", "UST2", "UnknownUS",
e70425
-    "MIPSR1xK", "MIPSICE9"};
e70425
+    "MIPSR1xK", "MIPSICE9", "ARM"};
e70425
 enum MACHTYPE {MACHOther, IbmPwr3, IbmPwr4, IbmPwr5, PPCG4, PPCG5,
e70425
                IbmPwr6, IbmPwr7,
e70425
                IntP5, IntP5MMX, IntPPRO, IntPII, IntPIII, IntPM, IntCoreS,
e70425
@@ -34,7 +34,8 @@
e70425
                IA64Itan, IA64Itan2,
e70425
                SunUSI, SunUSII, SunUSIII, SunUSIV, SunUST2, SunUSX,
e70425
                MIPSR1xK, /* includes R10K, R12K, R14K, R16K */
e70425
-               MIPSICE9   /* SiCortex ICE9 -- like MIPS5K */
e70425
+               MIPSICE9,   /* SiCortex ICE9 -- like MIPS5K */
e70425
+	       ARM
e70425
                };
e70425
 #define MachIsX86(mach_) \
e70425
    ( (mach_) >= IntP5 && (mach_) <= x86X )
e70425
@@ -51,6 +52,8 @@
e70425
 #endif
e70425
 #define MachIsPPC(mach_) \
e70425
    ( (mach_) >= PPCG4 && (mach_) <= PPCG5 )
e70425
+#define MachIsARM(mach_) \
e70425
+   ( (mach_) == ARM )
e70425
 
e70425
 static char *f2c_namestr[5] = {"UNKNOWN","Add_", "Add__", "NoChange", "UpCase"};
e70425
 static char *f2c_intstr[5] =
e70425
--- CONFIG/src/probe_comp.c	2011-05-14 13:33:24.000000000 -0400
e70425
+++ CONFIG/src/probe_comp.c.new	2011-08-30 14:28:31.103015151 -0400
e70425
@@ -507,6 +507,8 @@
e70425
 
e70425
    if (MachIsIA64(arch))
e70425
       return(sp);
e70425
+   if (MachIsARM(arch))
e70425
+      return(sp);
e70425
    if (MachIsMIPS(arch))
e70425
       return((ptrbits == 64) ? "-mabi=64" : "-mabi=n32");
e70425
    if (!CompIsGcc(comp))