diff options
author | 2019-10-27 11:24:18 +0100 | |
---|---|---|
committer | 2020-04-08 14:38:11 +0200 | |
commit | 009c8a6126decc073328b4df5fd7b9a5c0fd55de (patch) | |
tree | dbebbce940fa70d64b4cdc0c438c5c0a7c9c212d | |
parent | 1e639476fdb4ad708718593086d3ccadab56dd4c (diff) | |
download | buildroot-009c8a6126decc073328b4df5fd7b9a5c0fd55de.tar.gz buildroot-009c8a6126decc073328b4df5fd7b9a5c0fd55de.tar.bz2 |
package/libopenssl: make use of linux-generic64 for 64-bit archs
It was tested with:
BR2_mips64el=y
BR2_MIPS_NABI64=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-mips64-n64-full-2019.05.1.tar.bz2"
BR2_TOOLCHAIN_EXTERNAL_GCC_5=y
BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_1=y
BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
BR2_TOOLCHAIN_EXTERNAL_CXX=y
BR2_INIT_NONE=y
BR2_SYSTEM_BIN_SH_NONE=y
BR2_PACKAGE_OPENSSL=y
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 1ebb35ee5fb7bd5e6278a84ac2c18aa0a38056fb)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libopenssl/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libopenssl/Config.in b/package/libopenssl/Config.in index 732da5b4ef..4bc32e06a9 100644 --- a/package/libopenssl/Config.in +++ b/package/libopenssl/Config.in @@ -24,6 +24,7 @@ config BR2_PACKAGE_LIBOPENSSL_TARGET_ARCH default "linux-ppc64le" if BR2_powerpc64le default "linux-x86_64" if BR2_x86_64 # no-asm is needed with generic architectures such as - # linux-generic32, see + # linux-generic{32,64}, see # https://github.com/openssl/openssl/issues/9839 + default "linux-generic64 no-asm" if BR2_ARCH_IS_64 default "linux-generic32 no-asm" |