mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-01 19:09:54 +00:00
parent
8841be9b2b
commit
f3b41228ea
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -1,6 +1,8 @@
|
|||||||
llvm-toolchain-3.4 (1:3.4.2-3) unstable; urgency=medium
|
llvm-toolchain-3.4 (1:3.4.2-3) unstable; urgency=medium
|
||||||
|
|
||||||
* Ship the compiler-rt static libraries
|
* Ship the compiler-rt static libraries
|
||||||
|
* Running tests respect DEB_BUILD_OPTIONS=parallel=X
|
||||||
|
(Closes: #751943)
|
||||||
|
|
||||||
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 19 Jun 2014 19:13:16 +0200
|
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 19 Jun 2014 19:13:16 +0200
|
||||||
|
|
||||||
|
16
debian/patches/follow-parallel-var.diff
vendored
Normal file
16
debian/patches/follow-parallel-var.diff
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
Index: llvm-toolchain-3.4-3.4.2/test/Makefile
|
||||||
|
===================================================================
|
||||||
|
--- llvm-toolchain-3.4-3.4.2.orig/test/Makefile
|
||||||
|
+++ llvm-toolchain-3.4-3.4.2/test/Makefile
|
||||||
|
@@ -29,6 +29,11 @@ else
|
||||||
|
LIT_ARGS := -s -v
|
||||||
|
endif
|
||||||
|
|
||||||
|
+# NJOBS allows an override of the number of threads
|
||||||
|
+ifneq ($(NJOBS),)
|
||||||
|
+LIT_ARGS += $(NJOBS)
|
||||||
|
+endif
|
||||||
|
+
|
||||||
|
ifdef TESTSUITE
|
||||||
|
LIT_TESTSUITE := $(TESTSUITE)
|
||||||
|
else
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -40,3 +40,4 @@ scan-build-fix-clang-detection.diff
|
|||||||
compiler-rt-path.diff
|
compiler-rt-path.diff
|
||||||
lldb-soname.diff
|
lldb-soname.diff
|
||||||
CVE-2014-2893.diff
|
CVE-2014-2893.diff
|
||||||
|
follow-parallel-var.diff
|
||||||
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -355,9 +355,9 @@ override_dh_auto_test:
|
|||||||
# LLVM tests
|
# LLVM tests
|
||||||
ifneq (,$(findstring $(DEB_HOST_ARCH),$(ARCH_LLVM_TEST_OK)))
|
ifneq (,$(findstring $(DEB_HOST_ARCH),$(ARCH_LLVM_TEST_OK)))
|
||||||
# Fail the build if the test fails
|
# Fail the build if the test fails
|
||||||
LD_LIBRARY_PATH=$(CURDIR)/$(TARGET_BUILD)/Release/lib/ $(MAKE) -C $(TARGET_BUILD) check
|
NJOBS="$(NJOBS)" LD_LIBRARY_PATH=$(CURDIR)/$(TARGET_BUILD)/Release/lib/ $(MAKE) -C $(TARGET_BUILD) check
|
||||||
else
|
else
|
||||||
LD_LIBRARY_PATH=$(CURDIR)/$(TARGET_BUILD)/Release/lib/ $(MAKE) -C $(TARGET_BUILD) check || true
|
NJOBS="$(NJOBS)" LD_LIBRARY_PATH=$(CURDIR)/$(TARGET_BUILD)/Release/lib/ $(MAKE) -C $(TARGET_BUILD) check || true
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# clang tests
|
# clang tests
|
||||||
|
Loading…
Reference in New Issue
Block a user