diff options
Diffstat (limited to 'runtime/Makefile')
-rw-r--r-- | runtime/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/Makefile b/runtime/Makefile index 3ddf2bd..5910b3a 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 |