提交 0ae494d1 编写于 作者: C code4lala

regenerate linux-x86_64

Signed-off-by: Ncode4lala <fengziteng2@huawei.com>
上级 919b2606
因为 它太大了无法显示 source diff 。你可以改为 查看blob
......@@ -8588,6 +8588,7 @@ our %unified_info = (
"crypto/bn/libcrypto-lib-bn_srp.o",
"crypto/bn/libcrypto-lib-bn_word.o",
"crypto/bn/libcrypto-lib-bn_x931p.o",
"crypto/bn/libcrypto-lib-rsa_sup_mul.o",
"crypto/bn/libcrypto-lib-rsaz-avx2.o",
"crypto/bn/libcrypto-lib-rsaz-avx512.o",
"crypto/bn/libcrypto-lib-rsaz-x86_64.o",
......@@ -8628,6 +8629,7 @@ our %unified_info = (
"crypto/bn/libcrypto-shlib-bn_srp.o",
"crypto/bn/libcrypto-shlib-bn_word.o",
"crypto/bn/libcrypto-shlib-bn_x931p.o",
"crypto/bn/libcrypto-shlib-rsa_sup_mul.o",
"crypto/bn/libcrypto-shlib-rsaz-avx2.o",
"crypto/bn/libcrypto-shlib-rsaz-avx512.o",
"crypto/bn/libcrypto-shlib-rsaz-x86_64.o",
......@@ -20989,6 +20991,7 @@ our %unified_info = (
"crypto/bn/libcrypto-shlib-bn_srp.o",
"crypto/bn/libcrypto-shlib-bn_word.o",
"crypto/bn/libcrypto-shlib-bn_x931p.o",
"crypto/bn/libcrypto-shlib-rsa_sup_mul.o",
"crypto/bn/libcrypto-shlib-rsaz-avx2.o",
"crypto/bn/libcrypto-shlib-rsaz-avx512.o",
"crypto/bn/libcrypto-shlib-rsaz-x86_64.o",
......@@ -22765,6 +22768,9 @@ our %unified_info = (
"crypto/bn/libcrypto-lib-bn_x931p.o" => [
"crypto/bn/bn_x931p.c"
],
"crypto/bn/libcrypto-lib-rsa_sup_mul.o" => [
"crypto/bn/rsa_sup_mul.c"
],
"crypto/bn/libcrypto-lib-rsaz-avx2.o" => [
"crypto/bn/rsaz-avx2.s"
],
......@@ -22885,6 +22891,9 @@ our %unified_info = (
"crypto/bn/libcrypto-shlib-bn_x931p.o" => [
"crypto/bn/bn_x931p.c"
],
"crypto/bn/libcrypto-shlib-rsa_sup_mul.o" => [
"crypto/bn/rsa_sup_mul.c"
],
"crypto/bn/libcrypto-shlib-rsaz-avx2.o" => [
"crypto/bn/rsaz-avx2.s"
],
......@@ -26906,6 +26915,7 @@ our %unified_info = (
"crypto/bn/libcrypto-lib-bn_srp.o",
"crypto/bn/libcrypto-lib-bn_word.o",
"crypto/bn/libcrypto-lib-bn_x931p.o",
"crypto/bn/libcrypto-lib-rsa_sup_mul.o",
"crypto/bn/libcrypto-lib-rsaz-avx2.o",
"crypto/bn/libcrypto-lib-rsaz-avx512.o",
"crypto/bn/libcrypto-lib-rsaz-x86_64.o",
......@@ -30412,8 +30422,8 @@ unless (caller) {
use File::Copy;
use Pod::Usage;
use lib '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/util/perl';
use OpenSSL::fallback '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/external/perl/MODULES.txt';
use lib '/tmp/third_party_openssl/util/perl';
use OpenSSL::fallback '/tmp/third_party_openssl/external/perl/MODULES.txt';
my $here = dirname($0);
......@@ -30440,7 +30450,7 @@ unless (caller) {
);
use lib '.';
use lib '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/Configurations';
use lib '/tmp/third_party_openssl/Configurations';
use gentemplate;
open my $buildfile_template_fh, ">$buildfile_template"
......@@ -30457,8 +30467,8 @@ unless (caller) {
my $prepend = <<'_____';
use File::Spec::Functions;
use lib '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/util/perl';
use lib '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/Configurations';
use lib '/tmp/third_party_openssl/util/perl';
use lib '/tmp/third_party_openssl/Configurations';
use lib '.';
use platform;
_____
......@@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: linux-x86_64"
#define DATE "built on: Wed Feb 22 02:56:11 2023 UTC"
#define DATE "built on: Wed Apr 26 07:09:18 2023 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a
......
......@@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
OTHERNAME *otherName; /* otherName */
ASN1_IA5STRING *rfc822Name;
ASN1_IA5STRING *dNSName;
ASN1_TYPE *x400Address;
ASN1_STRING *x400Address;
X509_NAME *directoryName;
EDIPARTYNAME *ediPartyName;
ASN1_IA5STRING *uniformResourceIdentifier;
......
......@@ -9,7 +9,7 @@ use File::Spec::Functions;
BEGIN {
# This method corresponds exactly to 'use OpenSSL::Util',
# but allows us to use a platform specific file spec.
require '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/util/perl/OpenSSL/Util.pm';
require '/tmp/third_party_openssl/util/perl/OpenSSL/Util.pm';
OpenSSL::Util->import();
}
......@@ -20,7 +20,7 @@ my $std_openssl_conf = catdir($there, 'apps/openssl.cnf');
my $unix_shlib_wrap = catfile($there, 'util/shlib_wrap.sh');
if ($ARGV[0] eq '-fips') {
$std_openssl_conf = '/mnt/data/f00574894/openssl/openssl3.0.7/openssl-linux-x86_64/test/fips-and-base.cnf';
$std_openssl_conf = '/tmp/third_party_openssl/test/fips-and-base.cnf';
shift;
my $std_openssl_conf_include = catdir($there, 'providers');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册