When configuring hwloc-1.3.1rc1 on anything but x86 or x86-64 one sees the following: checking which CPU support to include... checking size of unsigned long... 4

The patch below will change that to
    checking which CPU support to include... unknown
    checking size of unsigned long... 4

-Paul


--- hwloc-1.3.1rc1/config/hwloc.m4~     2011-12-20 21:16:22.000000000 -0800
+++ hwloc-1.3.1rc1/config/hwloc.m4      2011-12-20 21:18:08.000000000 -0800
@@ -247,6 +247,10 @@
             AC_MSG_RESULT([unknown -- assuming x86_64])
             ;;
         esac
+        ;;
+      *)
+        AC_MSG_RESULT([unknown])
+        ;;
     esac

     AC_CHECK_SIZEOF([unsigned long])

--
Paul H. Hargrove                          phhargr...@lbl.gov
Future Technologies Group
HPC Research Department                   Tel: +1-510-495-2352
Lawrence Berkeley National Laboratory     Fax: +1-510-486-6900

Reply via email to