Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v5, 1/1] package/libopenssl: set no-asm with generic architectures
@ 2019-10-19 12:27 Fabrice Fontaine
  2019-10-27  9:31 ` Thomas Petazzoni
  2019-10-31 14:14 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-10-19 12:27 UTC (permalink / raw)
  To: buildroot

Use no-asm when building with generic architectures such as gcc or
linux-generic32, see https://github.com/openssl/openssl/issues/9839

This will fix a static build failure on x86_64 due to the removal of
x86/x86_64 BSAES and AES_ASM support by
https://github.com/openssl/openssl/commit/87bea6550ae0dda7c40937cff2e86cc2b0b09491

Fixes:
 - http://autobuild.buildroot.org/results/e4f04bb13ec1b82b73db645bea4933e52bca4185

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v4 -> v5 (after review of Thomas Petazzoni):
 - Reword commit message to remove statically

Changes v3 -> v4 (after review of Thomas Petazzoni):
 - Fix copy/paste error and remove the second assignation

Changes v2 -> v3 (after review of Thomas Petazzoni):
 - Set no-asm with linux-generic32

Changes v1 -> v2 (after review of Thomas Petazzoni):
 - Set no-asm with all static builds and not only x86_64

 package/libopenssl/libopenssl.mk | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/package/libopenssl/libopenssl.mk b/package/libopenssl/libopenssl.mk
index 4a430bcb4d..a1bbf9a900 100644
--- a/package/libopenssl/libopenssl.mk
+++ b/package/libopenssl/libopenssl.mk
@@ -12,7 +12,9 @@ LIBOPENSSL_LICENSE_FILES = LICENSE
 LIBOPENSSL_INSTALL_STAGING = YES
 LIBOPENSSL_DEPENDENCIES = zlib
 HOST_LIBOPENSSL_DEPENDENCIES = host-zlib
-LIBOPENSSL_TARGET_ARCH = linux-generic32
+# no-asm is needed with generic architectures such as linux-generic32, see
+# https://github.com/openssl/openssl/issues/9839
+LIBOPENSSL_TARGET_ARCH = linux-generic32 no-asm
 LIBOPENSSL_CFLAGS = $(TARGET_CFLAGS)
 LIBOPENSSL_PROVIDES = openssl
 
@@ -55,7 +57,9 @@ endif
 
 ifeq ($(BR2_STATIC_LIBS),y)
 # Use "gcc" minimalistic target to disable DSO
-LIBOPENSSL_TARGET_ARCH = gcc
+# no-asm is needed with generic architectures such as gcc, see
+# https://github.com/openssl/openssl/issues/9839
+LIBOPENSSL_TARGET_ARCH = gcc no-asm
 else
 # Some architectures are optimized in OpenSSL
 # Doesn't work for thumb-only (Cortex-M?)
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v5, 1/1] package/libopenssl: set no-asm with generic architectures
  2019-10-19 12:27 [Buildroot] [PATCH v5, 1/1] package/libopenssl: set no-asm with generic architectures Fabrice Fontaine
@ 2019-10-27  9:31 ` Thomas Petazzoni
  2019-10-31 14:14 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-10-27  9:31 UTC (permalink / raw)
  To: buildroot

On Sat, 19 Oct 2019 14:27:59 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Use no-asm when building with generic architectures such as gcc or
> linux-generic32, see https://github.com/openssl/openssl/issues/9839
> 
> This will fix a static build failure on x86_64 due to the removal of
> x86/x86_64 BSAES and AES_ASM support by
> https://github.com/openssl/openssl/commit/87bea6550ae0dda7c40937cff2e86cc2b0b09491
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/e4f04bb13ec1b82b73db645bea4933e52bca4185
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> Changes v4 -> v5 (after review of Thomas Petazzoni):
>  - Reword commit message to remove statically

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v5, 1/1] package/libopenssl: set no-asm with generic architectures
  2019-10-19 12:27 [Buildroot] [PATCH v5, 1/1] package/libopenssl: set no-asm with generic architectures Fabrice Fontaine
  2019-10-27  9:31 ` Thomas Petazzoni
@ 2019-10-31 14:14 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2019-10-31 14:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Use no-asm when building with generic architectures such as gcc or
 > linux-generic32, see https://github.com/openssl/openssl/issues/9839

 > This will fix a static build failure on x86_64 due to the removal of
 > x86/x86_64 BSAES and AES_ASM support by
 > https://github.com/openssl/openssl/commit/87bea6550ae0dda7c40937cff2e86cc2b0b09491

 > Fixes:
 >  - http://autobuild.buildroot.org/results/e4f04bb13ec1b82b73db645bea4933e52bca4185

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 > ---
 > Changes v4 -> v5 (after review of Thomas Petazzoni):
 >  - Reword commit message to remove statically

 > Changes v3 -> v4 (after review of Thomas Petazzoni):
 >  - Fix copy/paste error and remove the second assignation

 > Changes v2 -> v3 (after review of Thomas Petazzoni):
 >  - Set no-asm with linux-generic32

 > Changes v1 -> v2 (after review of Thomas Petazzoni):
 >  - Set no-asm with all static builds and not only x86_64

 >  package/libopenssl/libopenssl.mk | 8 ++++++--
 >  1 file changed, 6 insertions(+), 2 deletions(-)

Committed to 2019.02.x and 2019.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-10-31 14:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-19 12:27 [Buildroot] [PATCH v5, 1/1] package/libopenssl: set no-asm with generic architectures Fabrice Fontaine
2019-10-27  9:31 ` Thomas Petazzoni
2019-10-31 14:14 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox