From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web10.9449.1642754042290871884 for ; Fri, 21 Jan 2022 00:34:02 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=g6oVctlc; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1642754041; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=y/Lf7snENQvJcsS0fLwLkM7kdwMM1r/bqHkRdx/lRZs=; b=g6oVctlc6/KrOXDYnTInc2e38x/RmzbdW3mE5VwU4cye4UNV74r/DWGouxMQFgnbeJ/x29 I58PkHlYBcBrmpUFiCDk8Twp0lUr7BaxJ9tmwm/sijUGq6UHMd/Qj3E8lVYa6i4olktNuE V34gxKm+3Ol49lUg9EZ2KB+Ufuxi9As= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-259-_MLfjOqjNsyz-Ro2FmKT5A-1; Fri, 21 Jan 2022 03:33:58 -0500 X-MC-Unique: _MLfjOqjNsyz-Ro2FmKT5A-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id F330C84BA50; Fri, 21 Jan 2022 08:33:56 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.193.47]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A165660C40; Fri, 21 Jan 2022 08:33:56 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id D354E180009C; Fri, 21 Jan 2022 09:33:54 +0100 (CET) Date: Fri, 21 Jan 2022 09:33:54 +0100 From: "Gerd Hoffmann" To: devel@edk2.groups.io, michael.d.kinney@intel.com Cc: "Yao, Jiewen" , "Wang, Jian J" , "Jiang, Guomin" , Pawel Polawski , "Lu, XiaoyuX" Subject: Re: [edk2-devel] [PATCH 00/24] CryptoPkg/openssl: update openssl submodule to v3.0 Message-ID: <20220121083354.wx6m6itqsosxyykc@sirius.home.kraxel.org> References: <20211203160748.866150-1-kraxel@redhat.com> <20220117114627.ji5cyqxkca6bmiaf@sirius.home.kraxel.org> MIME-Version: 1.0 In-Reply-To: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=kraxel@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, > > > I still have a bunch of failures in CI, for some of them I'm not sure > > > how to handle them best: > > > > > > (1) 32-bit builds on windows fail: > > > > > > INFO - OpensslLibCrypto.lib(rsa_lib.obj) : error LNK2001: unresolved external > > > symbol __allmul > > > INFO - OpensslLibCrypto.lib(rsa_lib.obj) : error LNK2001: unresolved external > > > symbol __aulldiv > > > INFO - OpensslLibCrypto.lib(bio_print.obj) : error LNK2001: unresolved external > > > symbol __aulldvrm > > > INFO - OpensslLibCrypto.lib(bio_print.obj) : error LNK2001: unresolved external > > > symbol __ftol2_sse > > We need to see if there are any OpenSSL config settings to completely remove use of > float/double types. https://github.com/openssl/openssl/pull/17547 That'll solve __ftol2_sse, but the other ones are 64bit integer math ... take care, Gerd