Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Dec 2020 14:33:56 +0000 (UTC)
From:      MANTANI Nobutaka <nobutaka@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r558994 - head/editors/imhex
Message-ID:  <202012231433.0BNEXuwl041681@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nobutaka
Date: Wed Dec 23 14:33:56 2020
New Revision: 558994
URL: https://svnweb.freebsd.org/changeset/ports/558994

Log:
  Set NOT_FOR_ARCHS=i386 because __uint128_t and __int128_t are not supported.

Modified:
  head/editors/imhex/Makefile

Modified: head/editors/imhex/Makefile
==============================================================================
--- head/editors/imhex/Makefile	Wed Dec 23 13:58:21 2020	(r558993)
+++ head/editors/imhex/Makefile	Wed Dec 23 14:33:56 2020	(r558994)
@@ -10,6 +10,9 @@ COMMENT=	Hex editor for reverse engineers and programm
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+NOT_FOR_ARCHS=	i386
+NOT_FOR_ARCHS_REASON=	__uint128_t and __int128_t are not supported
+
 BUILD_DEPENDS=	c++10:lang/gcc10 \
 		glm>0:math/glm \
 		nlohmann-json>0:devel/nlohmann-json



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012231433.0BNEXuwl041681>