diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2003-12-20 21:35:15 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2003-12-20 21:35:15 +0000 |
commit | 3e58e48d20b85c1eeb935f7ada951865200513f5 (patch) | |
tree | f6eed24425b2e277d196fdbfa14954276be81537 | |
parent | 9abc81790ea8b246680a8b3e6a33d0fa4b02ff78 (diff) |
Fix help string for --enable-spec2000 option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10564 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | autoconf/configure.ac | 2 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index a5f85b4835..ecabae9a9d 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -413,7 +413,7 @@ else fi dnl Spec Benchmarks -AC_ARG_ENABLE(spec2000,AC_HELP_STRING([--enable-spec],[Compile SPEC 2000 benchmarks (default is NO)]),,enableval=no) +AC_ARG_ENABLE(spec2000,AC_HELP_STRING([--enable-spec2000],[Compile SPEC 2000 benchmarks (default is NO)]),,enableval=no) if test ${enableval} = "no" then if test -d /home/vadve/shared/benchmarks/speccpu2000/benchspec @@ -1032,7 +1032,7 @@ Optional Features: --disable-libtool-lock avoid locking (might break parallel builds) --enable-purify Compile with purify (default is NO) --enable-optimized Compile with optimizations enabled (default is NO) - --enable-spec Compile SPEC 2000 benchmarks (default is NO) + --enable-spec2000 Compile SPEC 2000 benchmarks (default is NO) --enable-precompiled_bytecode Use pre-compiled bytecode (default is NO) --enable-llc_diffs Enable LLC Diffs when testing (default is YES) |