From: Chris Lattner Date: Thu, 16 Feb 2006 21:11:49 +0000 (+0000) Subject: don't build the skeleton target X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a6bbfe844811fe5b2b678d93fcb637831272699f;p=oota-llvm.git don't build the skeleton target git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26237 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 3f51f2d103e..38b6078c360 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -258,7 +258,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 Sparc SparcV9 PowerPC Alpha IA64 Skeleton" ;; + all) TARGETS_TO_BUILD="X86 Sparc SparcV9 PowerPC Alpha IA64" ;; host-only) case "$llvm_cv_target_arch" in x86) TARGETS_TO_BUILD="X86" ;; @@ -278,7 +278,6 @@ case "$enableval" in powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;; alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;; ia64) TARGETS_TO_BUILD="IA64 $TARGETS_TO_BUILD" ;; - skeleton)TARGETS_TO_BUILD="Skeleton $TARGETS_TO_BUILD";; *) AC_MSG_ERROR([Unrecognized target $a_target]) ;; esac done