Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
--infodir=DIR info documentation [PREFIX/info]
--mandir=DIR man documentation [PREFIX/man]
_ACEOF
cat <<\_ACEOF
System types:
--build=BUILD configure for building on BUILD [guessed]
--host=HOST cross-compile to build programs to run on HOST [BUILD]
--target=TARGET configure for building compilers for TARGET [HOST]
_ACEOF
fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of [LLVM] [1.0]:";;
esac
cat <<\_ACEOF
Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-shared[=PKGS]
build shared libraries [default=yes]
--enable-static[=PKGS]
build static libraries [default=yes]
--enable-fast-install[=PKGS]
optimize for fast installation [default=yes]
--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 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)
--enable-jit Enable Just In Time Compiling (default is YES)
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
--with-pic try to use only PIC/non-PIC objects [default=use
both]
--with-tags[=TAGS]
include additional configurations [automatic]
--with-spec Location of SPEC benchmarks
--with-llvmgccdir Location of LLVM GCC front-end
--with-bcrepos Location of Bytecode Repository
--with-papi Location of PAPI
--with-purify Location of purify program
Some influential environment variables:
CXX C++ compiler command
CXXFLAGS C++ compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
headers in a nonstandard directory <include dir>
CC C compiler command
CFLAGS C compiler flags
CPP C preprocessor
CXXCPP C++ preprocessor
F77 Fortran 77 compiler command
FFLAGS Fortran 77 compiler flags
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
Report bugs to <llvmbugs@cs.uiuc.edu>.
_ACEOF
fi
if test "$ac_init_help" = "recursive"; then
# If there are subdirs, report their specific --help.
ac_popdir=`pwd`
for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
test -d $ac_dir || continue
ac_builddir=.
if test "$ac_dir" != .; then
ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
# A "../" for each directory in $ac_dir_suffix.
ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
else
ac_dir_suffix= ac_top_builddir=
fi
case $srcdir in
.) # No --srcdir option. We are building in place.
ac_srcdir=.
if test -z "$ac_top_builddir"; then
ac_top_srcdir=.
else
ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
fi ;;
[\\/]* | ?:[\\/]* ) # Absolute path.
ac_srcdir=$srcdir$ac_dir_suffix;
ac_top_srcdir=$srcdir ;;
*) # Relative path.
ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
ac_top_srcdir=$ac_top_builddir$srcdir ;;
esac
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
# absolute.
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
cd $ac_dir
# Check for guested configure; otherwise get Cygnus style configure.
if test -f $ac_srcdir/configure.gnu; then
echo
$SHELL $ac_srcdir/configure.gnu --help=recursive
elif test -f $ac_srcdir/configure; then
echo
$SHELL $ac_srcdir/configure --help=recursive
elif test -f $ac_srcdir/configure.ac ||
test -f $ac_srcdir/configure.in; then
echo
$ac_configure --help
else
echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
fi
cd $ac_popdir
done
fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
[LLVM] configure [1.0]
generated by GNU Autoconf 2.57
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
_ACEOF
exit 0
fi
exec 5>config.log
cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by [LLVM] $as_me [1.0], which was
generated by GNU Autoconf 2.57. Invocation command line was
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
$ $0 $@
_ACEOF
{
cat <<_ASUNAME
## --------- ##
## Platform. ##
## --------- ##
hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
uname -m = `(uname -m) 2>/dev/null || echo unknown`
uname -r = `(uname -r) 2>/dev/null || echo unknown`
uname -s = `(uname -s) 2>/dev/null || echo unknown`
uname -v = `(uname -v) 2>/dev/null || echo unknown`
/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
_ASUNAME
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
echo "PATH: $as_dir"
done
} >&5
cat >&5 <<_ACEOF
## ----------- ##
## Core tests. ##
## ----------- ##
_ACEOF
# Keep a trace of the command line.
# Strip out --no-create and --no-recursion so they do not pile up.
# Strip out --silent because we don't want to record it for future runs.
# Also quote any args containing shell meta-characters.
# Make two passes to allow for proper duplicate-argument suppression.
ac_configure_args=
ac_configure_args0=
ac_configure_args1=
ac_must_keep_next=false
for ac_pass in 1 2
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
for ac_arg
do
case $ac_arg in
-no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
| -silent | --silent | --silen | --sile | --sil)
continue ;;
*" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
esac
case $ac_pass in
1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
2)
ac_configure_args1="$ac_configure_args1 '$ac_arg'"
if test $ac_must_keep_next = true; then
ac_must_keep_next=false # Got value, back to normal.
else
case $ac_arg in
*=* | --config-cache | -C | -disable-* | --disable-* \
| -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
| -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
| -with-* | --with-* | -without-* | --without-* | --x)
case "$ac_configure_args0 " in
"$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
esac
;;
-* ) ac_must_keep_next=true ;;
esac
fi
ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
# Get rid of the leading space.
ac_sep=" "
;;
esac
done
done
$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
# When interrupted or exit'd, cleanup temporary files, and complete
# config.log. We remove comments because anyway the quotes in there
# would cause problems or look ugly.
# WARNING: Be sure not to use single quotes in there, as some shells,
# such as our DU 5.0 friend, will then `close' the trap.
trap 'exit_status=$?
# Save into config.log some information that might help in debugging.
{
echo
cat <<\_ASBOX
## ---------------- ##
## Cache variables. ##
## ---------------- ##
_ASBOX
echo
# The following way of writing the cache mishandles newlines in values,
{
(set) 2>&1 |
case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
*ac_space=\ *)
sed -n \
"s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
;;
*)
sed -n \
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
;;
esac;
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
cat <<\_ASBOX
## ----------------- ##
## Output variables. ##
## ----------------- ##
_ASBOX
echo
for ac_var in $ac_subst_vars
do
eval ac_val=$`echo $ac_var`
echo "$ac_var='"'"'$ac_val'"'"'"
done | sort
echo
if test -n "$ac_subst_files"; then
cat <<\_ASBOX
## ------------- ##
## Output files. ##
## ------------- ##
_ASBOX
echo
for ac_var in $ac_subst_files
do
eval ac_val=$`echo $ac_var`
echo "$ac_var='"'"'$ac_val'"'"'"
done | sort
echo
fi
if test -s confdefs.h; then
cat <<\_ASBOX
## ----------- ##
## confdefs.h. ##
## ----------- ##
_ASBOX
echo
sed "/^$/d" confdefs.h | sort
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
echo
fi
test "$ac_signal" != 0 &&
echo "$as_me: caught signal $ac_signal"
echo "$as_me: exit $exit_status"
} >&5
rm -f core core.* *.core &&
rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
exit $exit_status
' 0
for ac_signal in 1 2 13 15; do
trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
done
ac_signal=0
# confdefs.h avoids OS command line length limits that DEFS can exceed.
rm -rf conftest* confdefs.h
# AIX cpp loses on an empty file, so make sure it contains at least a newline.
echo >confdefs.h
# Predefined preprocessor variables.
cat >>confdefs.h <<_ACEOF
#define PACKAGE_NAME "$PACKAGE_NAME"
_ACEOF
cat >>confdefs.h <<_ACEOF
#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
_ACEOF
cat >>confdefs.h <<_ACEOF
#define PACKAGE_VERSION "$PACKAGE_VERSION"
_ACEOF
cat >>confdefs.h <<_ACEOF
#define PACKAGE_STRING "$PACKAGE_STRING"
_ACEOF
cat >>confdefs.h <<_ACEOF
#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
_ACEOF
# Let the site file select an alternate cache file if it wants to.
# Prefer explicitly selected file to automatically selected ones.
if test -z "$CONFIG_SITE"; then
if test "x$prefix" != xNONE; then
CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
else
CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
fi
fi
for ac_site_file in $CONFIG_SITE; do
if test -r "$ac_site_file"; then
{ echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
echo "$as_me: loading site script $ac_site_file" >&6;}
sed 's/^/| /' "$ac_site_file" >&5
. "$ac_site_file"
fi
done
if test -r "$cache_file"; then
# Some versions of bash will fail to source /dev/null (special
# files actually), so we avoid doing that.
if test -f "$cache_file"; then
{ echo "$as_me:$LINENO: loading cache $cache_file" >&5
echo "$as_me: loading cache $cache_file" >&6;}
case $cache_file in
[\\/]* | ?:[\\/]* ) . $cache_file;;
*) . ./$cache_file;;
esac
fi
else
{ echo "$as_me:$LINENO: creating cache $cache_file" >&5
echo "$as_me: creating cache $cache_file" >&6;}
>$cache_file
fi
# Check that the precious variables saved in the cache have kept the same
# value.
ac_cache_corrupted=false
for ac_var in `(set) 2>&1 |
sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
eval ac_old_set=\$ac_cv_env_${ac_var}_set
eval ac_new_set=\$ac_env_${ac_var}_set
eval ac_old_val="\$ac_cv_env_${ac_var}_value"
eval ac_new_val="\$ac_env_${ac_var}_value"
case $ac_old_set,$ac_new_set in
set,)
{ echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ac_cache_corrupted=: ;;
,set)
{ echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
ac_cache_corrupted=: ;;
,);;
*)
if test "x$ac_old_val" != "x$ac_new_val"; then
{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
{ echo "$as_me:$LINENO: former value: $ac_old_val" >&5
echo "$as_me: former value: $ac_old_val" >&2;}
{ echo "$as_me:$LINENO: current value: $ac_new_val" >&5
echo "$as_me: current value: $ac_new_val" >&2;}
ac_cache_corrupted=:
fi;;
esac
# Pass precious variables to config.status.
if test "$ac_new_set" = set; then
case $ac_new_val in
*" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
*) ac_arg=$ac_var=$ac_new_val ;;
esac
case " $ac_configure_args " in
*" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
*) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
esac
fi
done
if $ac_cache_corrupted; then
{ echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
echo "$as_me: error: changes in the environment can compromise the build" >&2;}
{ { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
{ (exit 1); exit 1; }; }
fi
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_aux_dir=
for ac_dir in autoconf $srcdir/autoconf; do
if test -f $ac_dir/install-sh; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/install-sh -c"
break
elif test -f $ac_dir/install.sh; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/install.sh -c"
break
elif test -f $ac_dir/shtool; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/shtool install -c"
break
fi
done
if test -z "$ac_aux_dir"; then
{ { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in autoconf $srcdir/autoconf" >&5
echo "$as_me: error: cannot find install-sh or install.sh in autoconf $srcdir/autoconf" >&2;}
{ (exit 1); exit 1; }; }
fi
ac_config_guess="$SHELL $ac_aux_dir/config.guess"
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
ac_config_headers="$ac_config_headers include/Config/config.h"
ac_config_commands="$ac_config_commands Makefile"
ac_config_commands="$ac_config_commands Makefile.common"
ac_config_commands="$ac_config_commands Makefile.rules"
ac_config_commands="$ac_config_commands lib/Makefile"
ac_config_commands="$ac_config_commands lib/Analysis/Makefile"
ac_config_commands="$ac_config_commands lib/Analysis/DataStructure/Makefile"
ac_config_commands="$ac_config_commands lib/Analysis/IPA/Makefile"
ac_config_commands="$ac_config_commands lib/Analysis/LiveVar/Makefile"
ac_config_commands="$ac_config_commands lib/AsmParser/Makefile"
ac_config_commands="$ac_config_commands lib/Bytecode/Makefile"
ac_config_commands="$ac_config_commands lib/Bytecode/Reader/Makefile"
ac_config_commands="$ac_config_commands lib/Bytecode/Writer/Makefile"
ac_config_commands="$ac_config_commands lib/CWriter/Makefile"
ac_config_commands="$ac_config_commands lib/CodeGen/Makefile"
ac_config_commands="$ac_config_commands lib/CodeGen/InstrSched/Makefile"
ac_config_commands="$ac_config_commands lib/CodeGen/InstrSelection/Makefile"
ac_config_commands="$ac_config_commands lib/CodeGen/ModuloScheduling/Makefile"
ac_config_commands="$ac_config_commands lib/CodeGen/RegAlloc/Makefile"
ac_config_commands="$ac_config_commands lib/CodeGen/SelectionDAG/Makefile"
ac_config_commands="$ac_config_commands lib/ExecutionEngine/Makefile"
ac_config_commands="$ac_config_commands lib/ExecutionEngine/Interpreter/Makefile"
ac_config_commands="$ac_config_commands lib/ExecutionEngine/JIT/Makefile"
ac_config_commands="$ac_config_commands lib/Support/Makefile"
ac_config_commands="$ac_config_commands lib/Target/Makefile"
ac_config_commands="$ac_config_commands lib/Target/Sparc/Makefile"
ac_config_commands="$ac_config_commands lib/Target/X86/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/Hello/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/IPO/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/Instrumentation/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/Instrumentation/ProfilePaths/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/Scalar/Makefile"
ac_config_commands="$ac_config_commands lib/Transforms/Utils/Makefile"
ac_config_commands="$ac_config_commands lib/VMCore/Makefile"
ac_config_commands="$ac_config_commands runtime/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/crtend/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libc/Makefile"
John Criswell
committed
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libcurses/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libexception/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libg/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libgcc/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libm/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libmalloc/Makefile"
John Criswell
committed
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libtermcap/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libucb/Makefile"
John Criswell
committed
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libutempter/Makefile"
ac_config_commands="$ac_config_commands runtime/GCCLibraries/libutil/Makefile"
ac_config_commands="$ac_config_commands runtime/libdummy/Makefile"
ac_config_commands="$ac_config_commands runtime/libtrace/Makefile"
ac_config_commands="$ac_config_commands test/Makefile"
ac_config_commands="$ac_config_commands test/Makefile.tests"
ac_config_commands="$ac_config_commands test/Programs/Makefile"
ac_config_commands="$ac_config_commands test/Programs/Makefile.programs"
ac_config_commands="$ac_config_commands test/Programs/TEST.aa.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.dsgraph.report"
ac_config_commands="$ac_config_commands test/Programs/TEST.micro.report"
ac_config_commands="$ac_config_commands test/Programs/TEST.aa.report"
ac_config_commands="$ac_config_commands test/Programs/TEST.example.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.nightly.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.buildrepo.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.jit.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.nightly.report"
ac_config_commands="$ac_config_commands test/Programs/TEST.dsgraph.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.jit.report"
ac_config_commands="$ac_config_commands test/Programs/TEST.typesafe.Makefile"
ac_config_commands="$ac_config_commands test/Programs/TEST.dsgraph.gnuplot"
ac_config_commands="$ac_config_commands test/Programs/TEST.micro.Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/Makefile"
John Criswell
committed
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/Makefile.spec"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CFP2000/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CFP2000/179.art/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CFP2000/183.equake/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CFP2000/188.ammp/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/164.gzip/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/175.vpr/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/176.gcc/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/181.mcf/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/186.crafty/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/197.parser/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/254.gap/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/255.vortex/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/256.bzip2/Makefile"
ac_config_commands="$ac_config_commands test/Programs/External/SPEC/CINT2000/300.twolf/Makefile"
ac_config_commands="$ac_config_commands test/Programs/LLVMSource/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Makefile.multisrc"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Burg/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Fhourstones/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/01-qbsort/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/03-testtrie/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/04-bisect/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/05-eks/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/08-main/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/09-vor/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/12-IOtest/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/15-trie/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/17-bintr/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/McCat/18-imp/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/bh/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/bisort/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/em3d/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/health/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/mst/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/perimeter/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/power/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/treeadd/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/tsp/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Olden/voronoi/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/OptimizerEval/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Ptrdist/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Ptrdist/anagram/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Ptrdist/bc/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Ptrdist/ft/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Ptrdist/ks/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/Ptrdist/yacr2/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/aha/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/llubenchmark/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/sgefa/Makefile"
ac_config_commands="$ac_config_commands test/Programs/MultiSource/sim/Makefile"
ac_config_commands="$ac_config_commands test/Programs/NoSource/Makefile"
ac_config_commands="$ac_config_commands test/Programs/NoSource/Flex/Makefile"
ac_config_commands="$ac_config_commands test/Programs/NoSource/Larn/Makefile"
ac_config_commands="$ac_config_commands test/Programs/NoSource/Moria-5.5.2/Makefile"
ac_config_commands="$ac_config_commands test/Programs/NoSource/Povray31/Makefile"
ac_config_commands="$ac_config_commands test/Programs/NoSource/m4/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Makefile.singlesrc"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Gizmos/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Benchmarks/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Benchmarks/Dhrystone/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Benchmarks/Shootout/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Benchmarks/Stanford/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/Benchmarks/Misc/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/CustomChecked/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/UnitTests/Makefile"
ac_config_commands="$ac_config_commands test/Programs/SingleSource/UnitTests/SetjmpLongjmp/Makefile"
ac_config_commands="$ac_config_commands tools/Makefile"
ac_config_commands="$ac_config_commands tools/analyze/Makefile"
ac_config_commands="$ac_config_commands tools/as/Makefile"
ac_config_commands="$ac_config_commands tools/bugpoint/Makefile"
ac_config_commands="$ac_config_commands tools/dis/Makefile"
ac_config_commands="$ac_config_commands tools/extract/Makefile"
ac_config_commands="$ac_config_commands tools/gccas/Makefile"
ac_config_commands="$ac_config_commands tools/gccld/Makefile"
ac_config_commands="$ac_config_commands tools/link/Makefile"
ac_config_commands="$ac_config_commands tools/llc/Makefile"
ac_config_commands="$ac_config_commands tools/lli/Makefile"
ac_config_commands="$ac_config_commands tools/opt/Makefile"
ac_config_commands="$ac_config_commands tools/llee/Makefile"
ac_config_commands="$ac_config_commands tools/llvm-as/Makefile"
ac_config_commands="$ac_config_commands tools/llvm-dis/Makefile"
ac_config_commands="$ac_config_commands utils/Makefile"
ac_config_commands="$ac_config_commands utils/Burg/Makefile"
ac_config_commands="$ac_config_commands utils/Burg/Doc/Makefile"
ac_config_commands="$ac_config_commands utils/TableGen/Makefile"
ac_config_commands="$ac_config_commands www/docs/Makefile"
ac_config_commands="$ac_config_commands projects/Makefile"
ac_config_commands="$ac_config_commands projects/sample/Makefile"