From 6f22256a38ffe614d3e6a18dcadefc759acd4ddb Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 8 Sep 2004 20:30:26 +0000 Subject: [PATCH] Disable libprofile as it breaks the build on Sparc (autoconf issues). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16253 91177308-0d34-0410-b5e6-96231b3b80d8 --- runtime/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/runtime/Makefile b/runtime/Makefile index 3ddf2bdf43b..5910b3aa037 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -21,6 +21,12 @@ install all :: @echo '********' Warning: and re-run configure if it does not. endif +# Disable libprofile: a faulty libtool is generated by autoconf which breaks the +# build on Sparc +ifeq ($(ARCH), Sparc) +PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) +endif + include $(LEVEL)/Makefile.common # Install target for libraries: Copy into $LLVMGCCDIR/bytecode-libs -- 2.34.1