From nobody Tue May 14 21:24:17 2024 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Vf8WK6Xwfz5L36D; Tue, 14 May 2024 21:24:29 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Vf8WK4Kbvz4QRs; Tue, 14 May 2024 21:24:29 +0000 (UTC) (envelope-from gerald@pfeifer.com) Authentication-Results: mx1.freebsd.org; none Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id B9AAE33FB2; Tue, 14 May 2024 17:24:21 -0400 (EDT) Received: from [172.20.10.205] (unknown [195.171.104.66]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 0963F33FA8; Tue, 14 May 2024 17:24:19 -0400 (EDT) Date: Tue, 14 May 2024 22:24:17 +0100 (BST) From: Gerald Pfeifer To: Eugene Grosbein , "Eugene M. Zheganin" cc: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: Re: git: e6a60afa18ab - main - databases/xtrabackup80: make it buildable on i386 In-Reply-To: <202405140609.44E69Bvx021213@gitrepo.freebsd.org> Message-ID: References: <202405140609.44E69Bvx021213@gitrepo.freebsd.org> List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-ports-all@freebsd.org Sender: owner-dev-commits-ports-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pfeifer.com; h=date:from:to:cc:subject:in-reply-to:message-id:references:mime-version:content-type; s=pair-202402271039; bh=N5D5RnCFgGUbUEfUbvungOJw1QGWBHM7JMiYBoIfBcs=; b=x7/jYG96TGrP7vDHfKC94t4KrAfEG+f5+8JzAXgNj3ZUdOckLRuBSlQj/lmA+D6jnXWZ7XozDr4C6rD54RLgKDGIH60aS1EhF4XjlDzo07MpHjOHe/tTkd2BlT9WSp09ese148KH1qR860DqCzRNoAa8cRz30d0W4UIzz7eavE1jgwM/P8k5vC06PViz575B6Bxz3JNDeCYR15CD31GHClCU6LeQkCWR8V7qcJl8BQ9yTnpN6OfkPfvFNEO8I6pj7t7DwExnu1AU0LMdHRGEuYmZCGuua2M6fsisSrZZefxs7NrVG/c5ygn+Hjq/6vtyK3XXBXfLjCfOqeFXsfmnmw== X-Scanned-By: mailmunge 3.11 on 209.68.5.143 X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:7859, ipnet:209.68.0.0/18, country:US] X-Rspamd-Queue-Id: 4Vf8WK4Kbvz4QRs On Tue, 14 May 2024, Eugene Grosbein wrote: > databases/xtrabackup80: make it buildable on i386 > > Modern clang cannot build the port on i386 systems. > Use GCC13 to make working package. > > Approved by: Eugene M. Zheganin (maintainer) > --- > databases/xtrabackup80/Makefile | 75 ++++++++++++++-------- This appears to be a bit more than just using GCC 13? Did you tree using USE_GCC=13 as a base and then make necessary tweaks? If so, what could you not make work? > # Since MySQL 8.0.20 InnoDB engine uses new memory alligned allocator > -# which is broken on i386 due to different size of types and causes a > -# 'static_assert(alignof(T) <= alignof(std::max_align_t))' error > +# which is broken on i386 with Clang due to different size of types > +# and causes a 'static_assert(alignof(T) <= alignof(std::max_align_t))' error What do the upstream maintainers say about this issue? Gerald