From owner-freebsd-ports-bugs@freebsd.org Sat Oct 6 13:29:41 2018 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBEE410BA107 for ; Sat, 6 Oct 2018 13:29:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 88325749CD for ; Sat, 6 Oct 2018 13:29:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 49D8110BA106; Sat, 6 Oct 2018 13:29:40 +0000 (UTC) Delivered-To: ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27E9110BA104 for ; Sat, 6 Oct 2018 13:29:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCB30749CA for ; Sat, 6 Oct 2018 13:29:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E450F53CA for ; Sat, 6 Oct 2018 13:29:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w96DTcMn037994 for ; Sat, 6 Oct 2018 13:29:38 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w96DTcdp037993 for ports-bugs@FreeBSD.org; Sat, 6 Oct 2018 13:29:38 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 231998] security/cryptopp: undefined reference to `CryptoPP::AlignedDeallocate(void*)' Date: Sat, 06 Oct 2018 13:29:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: andreas.sommer87@googlemail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jhale@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2018 13:29:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D231998 Bug ID: 231998 Summary: security/cryptopp: undefined reference to `CryptoPP::AlignedDeallocate(void*)' Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: jhale@FreeBSD.org Reporter: andreas.sommer87@googlemail.com Flags: maintainer-feedback?(jhale@FreeBSD.org) Assignee: jhale@FreeBSD.org Created attachment 197832 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D197832&action= =3Dedit cryptopp 7.0.0 build log on 2018Q4 / FreeBSD 11.2 amd64 By default, the SIMD option is off, resulting in disabling certain features: c++ -O2 -pipe -fstack-protector -fno-strict-aliasing -std=3Dc++11 -stdlib= =3Dlibc++ -Wno-deprecated-declarations -fPIC -DNDEBUG -DCRYPTOPP_DISABLE_ASM -DCRYPTOPP_DISABLE_SSE2 -DCRYPTOPP_DISABLE_SSSE3 -DCRYPTOPP_DISABLE_SSE4 -pthread -pipe -c misc.cpp Thus, the `AlignedDeallocate` function does not get compiled. Trying to use the shared object with `-lcryptopp` results in the above link= er error because `config.h` determines enabled features by the `CRYPTOPP_DISABLE_*` macros. In this case: #if (CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X64 || CRYPTOPP_BOOL_PPC32 || CRYPTOPP_BOOL_PPC64) && !defined(CRYPTOPP_DISABLE_AS= M) #define CRYPTOPP_BOOL_ALIGN16 1 #else #define CRYPTOPP_BOOL_ALIGN16 0 #endif So a program linking against libcryptopp will think that CRYPTOPP_BOOL_ALIGN16=3D1 while it was actually compiled (using default opt= ion) with CRYPTOPP_BOOL_ALIGN16=3D0, leading to the missing function. Not sure how to approach this. Maybe write the chosen `CRYPTOPP_DISABLE_*` = into the installed `config.h`?! --=20 You are receiving this mail because: You are the assignee for the bug.=