projects
/
pcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e074605
)
Disable dh_dwz for clang builds
author
Jochen Sprickerhof
<git@jochen.sprickerhof.de>
Sat, 20 Aug 2022 04:27:11 +0000
(06:27 +0200)
committer
Jochen Sprickerhof
<git@jochen.sprickerhof.de>
Sat, 20 Aug 2022 04:27:11 +0000
(06:27 +0200)
debian/rules
patch
|
blob
|
history
diff --git
a/debian/rules
b/debian/rules
index 98494f6a71767cfe1e158128fa1d0118b155fde9..e733b7f770fda9b5d78c40b4f6f37827f6f1910a 100755
(executable)
--- a/
debian/rules
+++ b/
debian/rules
@@
-6,10
+6,15
@@
export DEB_CXXFLAGS_MAINT_APPEND = -g1
BUILD_DOC = $(if $(shell dh_listpackages | grep libpcl-doc),-DWITH_DOCS=ON)
+# use clang on some archs as gcc is running into "virtual memory exhausted"
ifneq (,$(filter $(DEB_BUILD_ARCH),mipsel armhf armel))
PARALLEL=--max-parallel=2
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
+
+# fails with "Unknown debugging section .debug_addr"
+override_dh_dwz:
+
else
PARALLEL=
endif