diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-08-05 19:38:27 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-08-05 19:52:05 +0300 |
| commit | 329a0dcc714d4b8f0a0580ecfa979b6f8d678642 (patch) | |
| tree | 427669cb801e3276089dd2f4a881848d67e5353b | |
| parent | 4c0e7c296dae25a84c2f0f0c68bbd2351aede38c (diff) | |
gnu: iproute: Fix building on powerpc64le-linux.
* gnu/packages/linux.scm (iproute)[arguments]: When building for
powerpc64le-linux adjust the flags passed to the C compiler.
Change-Id: I7dd4a8282fa59d16ce629f185069107cfd89a3a4
| -rw-r--r-- | gnu/packages/linux.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8dc546ad692..9668e078a82 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4258,7 +4258,10 @@ that the Ethernet protocol is much simpler than the IP protocol.") (string-append "HDRDIR=" out "/include") (string-append "SBINDIR=" out "/sbin") (string-append "CONFDIR=" out "/etc") - (string-append "MANDIR=" out "/share/man"))) + (string-append "MANDIR=" out "/share/man") + #$@(if (target-ppc64le?) + '("CCOPTS=-O2 -pipe -Wno-incompatible-pointer-types") + '()))) #:phases #~(modify-phases %standard-phases (replace 'configure |
