mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-13 15:37:23 +00:00
disable lld for now because of
https://llvm.org/bugs/show_bug.cgi?id=27590 https://llvm.org/bugs/show_bug.cgi?id=27685
This commit is contained in:
parent
3ca4048f90
commit
ef64786f2b
7
debian/rules
vendored
7
debian/rules
vendored
@ -124,6 +124,7 @@ ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH)))
|
|||||||
LLDB_ENABLE=no
|
LLDB_ENABLE=no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
LLD_ENABLE=NO
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ --with ocaml
|
dh $@ --with ocaml
|
||||||
@ -168,12 +169,14 @@ override_dh_auto_configure: preconfigure
|
|||||||
ln -s ../polly .; \
|
ln -s ../polly .; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "$(LLD_ENABLE)" = yes; then \
|
||||||
cd tools/ && \
|
cd tools/ && \
|
||||||
if test -h lld; then \
|
if test -h lld; then \
|
||||||
rm lld; \
|
rm lld; \
|
||||||
fi; \
|
fi; \
|
||||||
ln -s ../lld .; \
|
ln -s ../lld .; \
|
||||||
readlink lld
|
readlink lld; \
|
||||||
|
fi
|
||||||
|
|
||||||
if test "$(LLDB_ENABLE)" = yes; then \
|
if test "$(LLDB_ENABLE)" = yes; then \
|
||||||
cd tools/ && \
|
cd tools/ && \
|
||||||
@ -440,7 +443,9 @@ endif
|
|||||||
$(MAKE) $(NJOBS) -C $(TARGET_BUILD) check-clang || true
|
$(MAKE) $(NJOBS) -C $(TARGET_BUILD) check-clang || true
|
||||||
|
|
||||||
# LLD tests (CMake)
|
# LLD tests (CMake)
|
||||||
|
ifeq (${LLD_ENABLE},yes)
|
||||||
$(MAKE) $(NJOBS) -C $(TARGET_BUILD) check-lld || true
|
$(MAKE) $(NJOBS) -C $(TARGET_BUILD) check-lld || true
|
||||||
|
endif
|
||||||
|
|
||||||
# LLDB tests (CMake)
|
# LLDB tests (CMake)
|
||||||
ifeq (,$(filter $(DEB_HOST_ARCH), $(LLDB_DISABLE_ARCHS) armhf armel))
|
ifeq (,$(filter $(DEB_HOST_ARCH), $(LLDB_DISABLE_ARCHS) armhf armel))
|
||||||
|
Loading…
Reference in New Issue
Block a user