mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: openssl: Fix cross compiling for mips64el-linux.
* gnu/packages/tls.scm (openssl)[arguments]: When cross compiling add case for mips64el-linux.
This commit is contained in:
parent
e2f973b4ca
commit
2496b92e6c
1 changed files with 2 additions and 0 deletions
|
@ -347,6 +347,8 @@ (define-public openssl
|
|||
"linux-x86")
|
||||
((string-prefix? "x86_64" target)
|
||||
"linux-x86_64")
|
||||
((string-prefix? "mips64el" target)
|
||||
"linux-mips64")
|
||||
((string-prefix? "arm" target)
|
||||
"linux-armv4")
|
||||
((string-prefix? "aarch64" target)
|
||||
|
|
Loading…
Reference in a new issue