From: Misha Brukman Date: Fri, 22 Apr 2005 18:00:34 +0000 (+0000) Subject: Build the `Skeleton' target when building "all" targets X-Git-Tag: android-x86-6.0-r1~1003^2~48808 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ccc1c166cd8ba70a045c704f4323ef3a3b6cc2a2;p=android-x86%2Fexternal-llvm.git 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 --- diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 91ffe29d061..bc2551605da 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 61f154dde4e..e5fcc89ce38 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" ;;