mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: lsh: Build with optimizations.
This is a followup to 1cdd6b09c8
, which
inadvertently turned off optimizations.
* gnu/packages/ssh.scm (lsh)[arguments]: Add "-O2 -g" next to "-fcommon".
This commit is contained in:
parent
0d1a6cffaf
commit
33ce3f1c86
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2012-2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015, 2016, 2018, 2019, 2020, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
|
@ -631,7 +631,7 @@ (define-public lsh
|
|||
"CPPFLAGS=-DHAVE_ARGP_PARSE"
|
||||
|
||||
;; Fix the build of lsh@2.1 with GCC 10.
|
||||
"CFLAGS=-fcommon")
|
||||
"CFLAGS=-O2 -g -fcommon")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-failing-tests
|
||||
|
|
Loading…
Reference in a new issue