]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add enough gunk to configure.in to get through ./configure on
authorJulian Seward <jseward@acm.org>
Tue, 23 Nov 2004 01:17:29 +0000 (01:17 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 23 Nov 2004 01:17:29 +0000 (01:17 +0000)
armv4l-unknown-linux-gnu.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3079

configure.in

index 1401ea191b5f98e76b11a45c4a2181af49e6681a..015acc189a0fe83ed06fb451167ba42ade4c2064 100644 (file)
@@ -7,7 +7,7 @@ AM_INIT_AUTOMAKE
 AM_MAINTAINER_MODE
 
 # Where is VEX ? ToDo: --with-vex=
-VEX_DIR=/home/sewardj/Vex/vex/trunk
+VEX_DIR=/home/sewardj/VEX/vex/trunk
 AC_SUBST(VEX_DIR)
 
 # Checks for programs.
@@ -87,6 +87,15 @@ case "${host_cpu}" in
         ARCH_CORE_AM_CCASFLAGS=""
         ;;
 
+     arm*) 
+       AC_MSG_RESULT([ok (${host_cpu})])
+        VG_ARCH="arm"
+        KICKSTART_BASE="0xb0000000"
+        ARCH_CORE_AM_CFLAGS="-fomit-frame-pointer @PREFERRED_STACK_BOUNDARY@ -DELFSZ=32"
+        ARCH_TOOL_AM_CFLAGS="-fomit-frame-pointer @PREFERRED_STACK_BOUNDARY@"
+        ARCH_CORE_AM_CCASFLAGS=""
+        ;;
+
      powerpc*)
         AC_MSG_RESULT([no (${host_cpu})])
         VG_ARCH="ppc"
@@ -156,10 +165,13 @@ case $VG_PLATFORM in
         AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
         ;;
 
+    arm-linux)
+        AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
+        ;;
+
     *)
         AC_MSG_RESULT([no (${host_cpu}-${host_os})])
-        AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doin
-g a port.])
+        AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.])
         ;;
 esac