summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorXi Ruoyao <xry111@xry111.site>2023-11-24 16:14:05 +0800
committerTomas Mraz <tomas@openssl.org>2023-11-28 15:27:43 +0100
commitd7c0fc5b1a7b5cb2219f8d89a861f3879582fc16 (patch)
tree8c821bd009d8a373a73fc941a9d1527207dab94f /util
parenteadebcc863f8ff4c7bfa140dc9fdf8c2d21b899d (diff)
Do not define L_ENDIAN (for now) when we guessed linux64-loongarch64
In 160f48941d14 I made L_ENDIAN defined when the system is guessed to be linux64-loongarch64. Unfortunately now I found it problematic: 1. This should be added into Configurations/10-main.conf, not here. Having it here causes a different configuration when linux64-loongarch64 is explicitly specified than guessed. 2. With LTO enabled, this causes many test failures on linux64-loongarch64 due to #12247. So I think we should remove it for now (master and 3.2 branch), and reintroduce it to Configurations/10-main.conf when we finally sort out #12247. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22812)
Diffstat (limited to 'util')
-rwxr-xr-xutil/perl/OpenSSL/config.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index 8125f48b14..cda764b4ed 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -691,7 +691,6 @@ EOF
$disable = [];
}
return { target => "linux64-loongarch64",
- defines => [ 'L_ENDIAN' ],
disable => $disable, };
}
],