[llvm-commits] CVS: llvm-test/autoconf/configure.ac

Reid Spencer reid at x10sys.com
Tue Sep 7 09:42:09 PDT 2004



Changes in directory llvm-test/autoconf:

configure.ac updated: 1.5 -> 1.6
---
Log message:

Add back the removed DISABLE_LCC_DIFF option.


---
Diffs of the changes:  (+11 -0)

Index: llvm-test/autoconf/configure.ac
diff -u llvm-test/autoconf/configure.ac:1.5 llvm-test/autoconf/configure.ac:1.6
--- llvm-test/autoconf/configure.ac:1.5	Tue Sep  7 11:17:51 2004
+++ llvm-test/autoconf/configure.ac	Tue Sep  7 11:41:59 2004
@@ -130,5 +130,16 @@
 dnl Location of PAPI
 AC_ARG_WITH(papi,AC_HELP_STRING([--with-papi],[Location of PAPI]),AC_SUBST(PAPIDIR,[$withval]),AC_SUBST(PAPIDIR,[/home/vadve/shared/Sparc/papi-2.3.4.1]))
 
+dnl LLC Diff Option
+AC_ARG_ENABLE(llc_diffs,AC_HELP_STRING([--enable-llc_diffs],[Enable LLC Diffs
+                                        when testing (default is
+                                                      YES)]),,enableval=yes)
+if test ${enableval} = "no"
+then
+      AC_SUBST(DISABLE_LLC_DIFFS,[DISABLE_LLC_DIFFS:=1])
+else
+      AC_SUBST(DISABLE_LLC_DIFFS,[[]])
+fi
+
 dnl Create the output files
 AC_OUTPUT(Makefile.config)






More information about the llvm-commits mailing list