diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-25 15:08:19 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-25 15:08:19 +0100 |
commit | 9cfb0ef4d018552485e3e34e7ff1d04d9bc56137 (patch) | |
tree | a83598f9e3cdb54987a223a7b38928e5b1fbbb84 | |
parent | 3d4c527824e4383ba1f7724e718ffb30148d69e2 (diff) | |
download | guix-9cfb0ef4d018552485e3e34e7ff1d04d9bc56137.tar.gz |
gnu: iftop: Build with '-O2'.
* gnu/packages/admin.scm (iftop)[arguments]: Pass "-O2 -g".
-rw-r--r-- | gnu/packages/admin.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 48a9b5e54d..5d8b5cdc29 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2939,7 +2939,7 @@ the command line.") ("ncurses" ,ncurses))) (arguments ;; Fix build failure with GCC 10 - '(#:configure-flags '("CFLAGS=-fcommon"))) + '(#:configure-flags '("CFLAGS=-O2 -g -fcommon"))) (synopsis "Monitor network usage") (description "Iftop does for network usage what @command{top} does for CPU usage. It listens to network traffic on a named interface and |