guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: perf: Really build without '-Werror'.


From: guix-commits
Subject: 02/03: gnu: perf: Really build without '-Werror'.
Date: Sun, 22 Sep 2019 18:11:47 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 1f78a9996428fe0082eacd55767397f4f5a7758a
Author: Ludovic Courtès <address@hidden>
Date:   Sun Sep 22 23:49:57 2019 +0200

    gnu: perf: Really build without '-Werror'.
    
    Until this change, it would fail to build with:
    
      In file included from 
/tmp/guix-build-perf-5.2.15.drv-0/linux-5.2.15/tools/include/uapi/linux/ethtool.h:19:0,
                   from xsk.c:18:
      /gnu/store/…-linux-libre-headers-4.19.56/include/linux/if_ether.h:165:1: 
error: packed attribute is unnecessary for 'ethhdr' [-Werror=packed]
    
    * gnu/packages/linux.scm (perf)[arguments]: In 'configure' phase, remove
    "-Werror" from 'tools/lib/bpf/Makefile'.
---
 gnu/packages/linux.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index be18788..b65303a 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3082,6 +3082,10 @@ in a digital read-out.")
        (modify-phases %standard-phases
          (replace 'configure
            (lambda* (#:key inputs #:allow-other-keys)
+             ;; Don't build with '-Werror', really.
+             (substitute* "tools/lib/bpf/Makefile"
+               (("-Werror") ""))
+
              (setenv "SHELL_PATH" (which "bash"))
              (chdir "tools/perf")
              #t)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]