diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-08-16 21:43:32 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-20 11:59:44 +0100 |
commit | 9e9d0045caa62f3dba2760460de4e6eac38b4628 (patch) | |
tree | fe3c09fad305e863e5101ef35050da00bc81c098 | |
parent | bdc9e773c240716c2e2a60ca5d4313cfaa6188b1 (diff) | |
download | openembedded-core-9e9d0045caa62f3dba2760460de4e6eac38b4628.tar.gz openembedded-core-9e9d0045caa62f3dba2760460de4e6eac38b4628.tar.bz2 openembedded-core-9e9d0045caa62f3dba2760460de4e6eac38b4628.zip |
openssl: update 32bit x86 target from linux-elf -> linux-x86
According to comments in Configurations/10-main.conf, the linux-elf
target is "... to be used on older Linux machines where gcc doesn't
understand -m32 and -m64".
The linux-x86 target appears to be the newer replacement (currently
the only difference between the two is that linux-x86 adds -m32 to
cflags).
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.1.0i.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.0i.bb b/meta/recipes-connectivity/openssl/openssl_1.1.0i.bb index 8a8d928f5a..ab0d2648f9 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.1.0i.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.1.0i.bb @@ -58,7 +58,7 @@ do_configure () { target=linux-aarch64 ;; linux-i?86 | linux-viac3) - target=linux-elf + target=linux-x86 ;; linux-gnux32-x86_64 | linux-muslx32-x86_64 ) target=linux-x32 |