From 1076f32111e512ed437f135c9eb6ce2daaafd623 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 18 Oct 2023 14:21:10 +0300 Subject: gnu: isc-dhcp: Fix cross-compilation to powerpc-linux. * gnu/packages/admin.scm (isc-dhcp)[arguments]: Adjust the custom 'fix-bind-cross-compilation phase to force linking with '-latomic' when building for powerpc-linux. --- gnu/packages/admin.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 05e3936b0a..4f55c926fe 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1479,14 +1479,18 @@ connection alive.") (("^RELEASEVER=.*") (format #f "RELEASEVER=~a\n" ,bind-release-version))))) ,@(if (%current-target-system) - '((add-before 'configure 'fix-bind-cross-compilation + `((add-before 'configure 'fix-bind-cross-compilation (lambda _ (substitute* "configure" (("--host=\\$host") "--host=$host_alias")) ;; BIND needs a native compiler because the DHCP ;; build system uses the built 'gen' executable. - (setenv "BUILD_CC" "gcc")))) + (setenv "BUILD_CC" "gcc") + ;; powerpc-linux needs to be told to use -latomic. + ,@(if (target-ppc32?) + `((setenv "LIBS" "-latomic")) + '())))) '()) (add-before 'configure 'update-config-scripts (lambda* (#:key native-inputs inputs #:allow-other-keys) -- cgit v1.2.3