diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-18 10:21:50 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-18 10:51:06 +0100 |
commit | 5ddf98dadd757403a14bb2bc93e21801eb5fe3f8 (patch) | |
tree | 9258c9f2bd1e14213b496e6009032cfdedd8ee2f | |
parent | 97ab799afeff032b422642d945c2bcc764f6d8ed (diff) | |
download | guix-5ddf98dadd757403a14bb2bc93e21801eb5fe3f8.tar guix-5ddf98dadd757403a14bb2bc93e21801eb5fe3f8.tar.gz |
gnu: inputattach: Build with -O2.
* gnu/packages/linux.scm (inputattach)[arguments]: Pass "-O2" to GCC.
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index d08784b3f6..e9d8ea45c1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5213,7 +5213,7 @@ have to construct the archives directly, without using the archiver.") (with-directory-excursion "inputattach" (invoke (string-append (assoc-ref inputs "gcc") "/bin/gcc") - "-o" "inputattach" "inputattach.c")) + "-O2" "-o" "inputattach" "inputattach.c")) #t)) (delete 'check) (replace 'install |