aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-22 18:00:34 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-22 18:00:34 +0000
commitccc1c166cd8ba70a045c704f4323ef3a3b6cc2a2 (patch)
tree29e5c24464c21400b410523307c7760c1b5156fb
parent2dedcf570a941e0957e44f823ef4799d52e2f81b (diff)
Build the `Skeleton' target when building "all" targets
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21455 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--autoconf/configure.ac2
-rwxr-xr-xconfigure2
2 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 91ffe29d06..bc2551605d 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -242,7 +242,7 @@ AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-target],
[Build specific host targets: all,host-only,{target-name} (default=all)]),,
enableval=all)
case "$enableval" in
- all) TARGETS_TO_BUILD="X86 SparcV8 SparcV9 PowerPC Alpha IA64" ;;
+ all) TARGETS_TO_BUILD="X86 SparcV8 SparcV9 PowerPC Alpha IA64 Skeleton" ;;
host-only)
case "$llvm_cv_target_arch" in
x86) TARGETS_TO_BUILD="X86" ;;
diff --git a/configure b/configure
index 61f154dde4..e5fcc89ce3 100755
--- a/configure
+++ b/configure
@@ -3042,7 +3042,7 @@ else
enableval=all
fi;
case "$enableval" in
- all) TARGETS_TO_BUILD="X86 SparcV8 SparcV9 PowerPC Alpha IA64" ;;
+ all) TARGETS_TO_BUILD="X86 SparcV8 SparcV9 PowerPC Alpha IA64 Skeleton" ;;
host-only)
case "$llvm_cv_target_arch" in
x86) TARGETS_TO_BUILD="X86" ;;