[llvm-commits] CVS: llvm-test/configure Makefile.config.in

John Criswell criswell at cs.uiuc.edu
Thu Oct 21 08:29:59 PDT 2004



Changes in directory llvm-test:

configure updated: 1.12 -> 1.13
Makefile.config.in updated: 1.5 -> 1.6
---
Log message:

Fixed the check for sweep3d.
Added the macro checks for sweep3d and fpgrowth into Makefile.config.in.


---
Diffs of the changes:  (+21 -13)

Index: llvm-test/configure
diff -u llvm-test/configure:1.12 llvm-test/configure:1.13
--- llvm-test/configure:1.12	Thu Oct 21 10:14:57 2004
+++ llvm-test/configure	Thu Oct 21 10:29:45 2004
@@ -465,7 +465,7 @@
 # include <unistd.h>
 #endif"
 
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS LLVM_SRC LLVM_OBJ CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT CC CFLAGS ac_ct_CC CPP ifGNUmake LEX LEXLIB LEX_OUTPUT_ROOT FLEX YACC BISON build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB STRIP ac_ct_STRIP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL PYTHON SPEC95_ROOT USE_SPEC95 SPEC2000_ROOT USE_SPEC2000 POVRAY_ROOT USE_POVRAY NAMD_ROOT USE_NAMD SWEEDP3D_ROOT USE_SWEEDP3D FPGROWTH_ROOT USE_FPGROWTH F2C F2C_INC F2C_LIB USE_F2C DISABLE_LLC_DIFFS LIBOBJS LTLIBOBJS'
+ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS LLVM_SRC LLVM_OBJ CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT CC CFLAGS ac_ct_CC CPP ifGNUmake LEX LEXLIB LEX_OUTPUT_ROOT FLEX YACC BISON build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB STRIP ac_ct_STRIP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL PYTHON SPEC95_ROOT USE_SPEC95 SPEC2000_ROOT USE_SPEC2000 POVRAY_ROOT USE_POVRAY NAMD_ROOT USE_NAMD SWEEP3D_ROOT USE_SWEEP3D FPGROWTH_ROOT USE_FPGROWTH F2C F2C_INC F2C_LIB USE_F2C DISABLE_LLC_DIFFS LIBOBJS LTLIBOBJS'
 ac_subst_files=''
 
 # Initialize some variables set by options.
@@ -1033,7 +1033,7 @@
   --enable-spec2000=ARG   Use spec2000 as a benchmark (srcs in DIR)
   --enable-povray=ARG     Use povray as a benchmark (srcs in DIR)
   --enable-namd=ARG       Use namd as a benchmark (srcs in DIR)
-  --enable-sweedp3d=ARG   Use sweedp3d as a benchmark (srcs in DIR)
+  --enable-sweep3d=ARG    Use sweep3d as a benchmark (srcs in DIR)
   --enable-fpgrowth=ARG   Use fpgrowth as a benchmark (srcs in DIR)
   --enable-llc_diffs      Enable LLC Diffs when testing (default is YES)
 
@@ -19306,23 +19306,23 @@
 
 
 
- # Check whether --enable-sweedp3d or --disable-sweedp3d was given.
-if test "${enable_sweedp3d+set}" = set; then
-  enableval="$enable_sweedp3d"
+ # Check whether --enable-sweep3d or --disable-sweep3d was given.
+if test "${enable_sweep3d+set}" = set; then
+  enableval="$enable_sweep3d"
   checkresult=$enableval
 else
   checkresult=auto
 fi;
-echo "$as_me:$LINENO: checking for sweedp3d benchmark sources" >&5
-echo $ECHO_N "checking for sweedp3d benchmark sources... $ECHO_C" >&6
+echo "$as_me:$LINENO: checking for sweep3d benchmark sources" >&5
+echo $ECHO_N "checking for sweep3d benchmark sources... $ECHO_C" >&6
 case "$checkresult" in
 auto|yes)
     defaultdir=/home/vadve/criswell/umt2k
 	if test -d "$defaultdir"
 	then
-		SWEEDP3D_ROOT=$defaultdir
+		SWEEP3D_ROOT=$defaultdir
 
-		USE_SWEEDP3D=USE_SWEEDP3D=1
+		USE_SWEEP3D=USE_SWEEP3D=1
 
         checkresult="yes, found in $defaultdir"
     else
@@ -19336,9 +19336,9 @@
     ;;
 *)  if test -d "$checkresult"
     then
-        SWEEDP3D_ROOT="$checkresult"
+        SWEEP3D_ROOT="$checkresult"
 
-        USE_SWEEDP3D=USE_SWEEDP3D=1
+        USE_SWEEP3D=USE_SWEEP3D=1
 
         checkresult="yes, in $checkresult"
     else
@@ -20369,8 +20369,8 @@
 s, at USE_POVRAY@,$USE_POVRAY,;t t
 s, at NAMD_ROOT@,$NAMD_ROOT,;t t
 s, at USE_NAMD@,$USE_NAMD,;t t
-s, at SWEEDP3D_ROOT@,$SWEEDP3D_ROOT,;t t
-s, at USE_SWEEDP3D@,$USE_SWEEDP3D,;t t
+s, at SWEEP3D_ROOT@,$SWEEP3D_ROOT,;t t
+s, at USE_SWEEP3D@,$USE_SWEEP3D,;t t
 s, at FPGROWTH_ROOT@,$FPGROWTH_ROOT,;t t
 s, at USE_FPGROWTH@,$USE_FPGROWTH,;t t
 s, at F2C@,$F2C,;t t


Index: llvm-test/Makefile.config.in
diff -u llvm-test/Makefile.config.in:1.5 llvm-test/Makefile.config.in:1.6
--- llvm-test/Makefile.config.in:1.5	Fri Oct 15 08:38:46 2004
+++ llvm-test/Makefile.config.in	Thu Oct 21 10:29:45 2004
@@ -49,5 +49,13 @@
 @USE_NAMD@
 NAMD_ROOT := @NAMD_ROOT@
 
+# Path to the Sweep3d source code
+ at USE_SWEEP3D@
+SWEEP3D_ROOT := @SWEEP3D_ROOT@
+
+# Path to the fpgrowth source code
+ at USE_FPGROWTH@
+FPGROWTH_ROOT := @FPGROWTH_ROOT@
+
 # Disable LLC diffs for testing.
 @DISABLE_LLC_DIFFS@






More information about the llvm-commits mailing list