gnu: openssl: Fix building on x86_64-linux-gnux32.
* gnu/packages/tls.scm (target->openssl-target): Add entry for x86_64-linux-gnux32. Change-Id: Icbbdb76134da0811b8493c55ca2d3acdb77c5883 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
433b680dd6
commit
568c12d726
1 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2016, 2017, 2019, 2021-2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2019, 2021-2024 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is>
|
;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is>
|
||||||
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
@ -429,6 +429,8 @@ (define (target->openssl-target target)
|
||||||
(cond
|
(cond
|
||||||
((target-x86-32? target)
|
((target-x86-32? target)
|
||||||
"x86")
|
"x86")
|
||||||
|
((target-x32? target)
|
||||||
|
"x32")
|
||||||
((target-x86-64? target)
|
((target-x86-64? target)
|
||||||
"x86_64")
|
"x86_64")
|
||||||
((target-mips64el? target)
|
((target-mips64el? target)
|
||||||
|
|
Loading…
Reference in a new issue