[neon/qt6/qt6-serialbus/Neon/unstable] debian: need gcc 12.1 for mold to be able to process --gdb-index

Carlos De Maine null at kde.org
Sat Oct 28 14:55:05 BST 2023


Git commit 6a70071a4d6d74b002086b48c863524e5a9538c6 by Carlos De Maine.
Committed on 28/10/2023 at 15:55.
Pushed by carlosdem into branch 'Neon/unstable'.

need gcc 12.1 for mold to be able to process --gdb-index

M  +3    -0    debian/control
M  +7    -1    debian/rules

https://invent.kde.org/neon/qt6/qt6-serialbus/-/commit/6a70071a4d6d74b002086b48c863524e5a9538c6

diff --git a/debian/control b/debian/control
index a288412..8418335 100644
--- a/debian/control
+++ b/debian/control
@@ -6,10 +6,13 @@ Uploaders: Patrick Franz <deltaone at debian.org>, Lu YaNing <dluyaning at gmail.com>
 Build-Depends: cmake,
                debhelper-compat (= 13),
                dh-exec,
+               g++-12,
+               gcc-12,
                libgl-dev,
                libvulkan-dev [linux-any],
                libxkbcommon-dev,
                linux-libc-dev [linux-any],
+               mold,
                ninja-build,
                pkg-config,
                pkg-kde-tools,
diff --git a/debian/rules b/debian/rules
index b7e471c..1254257 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,6 +4,10 @@ include /usr/share/dpkg/architecture.mk
 
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all optimize=+lto
 
+# need gcc 12.1 for mold to be able to process --gdb-index
+export CC=gcc-12
+export CXX=g++-12
+
 # cross-builds
 ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
 	extra_cmake_args += -DQT_HOST_PATH=/usr
@@ -14,8 +18,10 @@ endif
 
 override_dh_auto_configure:
 	dh_auto_configure -- \
-		--log-level=STATUS \
+		-DCMAKE_MESSAGE_LOG_LEVEL=STATUS \
 		-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
+		-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \
+		-DQT_UNITY_BUILD=ON \
 		$(extra_cmake_args)
 
 override_dh_auto_build-indep:


More information about the Neon-commits mailing list