Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Port to ARM
[simgrid.git] / acmacro / gras_arch.m4
index ea8a73a..b455fd4 100644 (file)
@@ -120,6 +120,9 @@ AC_DEFUN([GRAS_STRUCT_BOUNDARY],
   done 
  ])
  AC_MSG_RESULT($GRAS_STRUCT_BOUNDARY_RES)
+ if test x$GRAS_STRUCT_BOUNDARY_RES = x ; then
+   AC_MSG_ERROR([Cannot determine the minimal alignment boundary of $1 in structures])
+ fi
 ])
 
 # GRAS_ARCH(): check the gras_architecture of this plateform
@@ -174,6 +177,8 @@ case $trace in
   l_C:1/1:_I:2/2:4/4:8/8:8/8:_P:8/8:8/8:_D:4/4:8/8:) gras_arch=1; gras_arch_name=little64;;
   B_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/8:) gras_arch=2; gras_arch_name=big32;;
   B_C:1/1:_I:2/2:4/4:8/8:8/8:_P:8/8:8/8:_D:4/4:8/8:) gras_arch=3; gras_arch_name=big64;;
+  B_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/4:) gras_arch=4; gras_arch_name=aix;;
+  B_C:1/1:_I:2/2:4/2:4/2:8/2:_P:4/2:4/2:_D:4/2:8/2:) gras_arch=5; gras_arch_name=arm;;
 esac
 if test x$gras_arch = xunknown ; then
   AC_MSG_RESULT([damnit ($trace)])
@@ -195,7 +200,7 @@ AC_DEFUN([GRAS_CHECK_STRUCT_COMPACTION],
        ]],[[switch (0) 
         case 0: 
         case (sizeof(struct s) == sizeof(double)+sizeof(char)):;
-       ]])],[gras_struct_packed=yes],[gras_struct_packed=no"])
+       ]])],[gras_struct_packed=yes],[gras_struct_packed=no])
      
    AC_MSG_RESULT($gras_struct_packed)
    if test x$gras_struct_packed = "xyes" ; then
@@ -215,7 +220,7 @@ AC_DEFUN([GRAS_CHECK_STRUCT_COMPACTION],
    AC_MSG_RESULT($gras_struct_compact)
    
    if test x$gras_struct_compact != xyes ; then
-     AC_MSG_ERROR(GRAS works only on structure compacting architectures (yet))
+     AC_MSG_ERROR([GRAS works only on structure compacting architectures (yet)])
    fi
    AC_DEFINE_UNQUOTED(GRAS_STRUCT_COMPACT, 1,
       [Defined if structures are compacted when possible.