Date: Mon, 17 Jun 2019 21:58:50 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504440 - head/devel/rabs Message-ID: <201906172158.x5HLwohu058545@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Mon Jun 17 21:58:49 2019 New Revision: 504440 URL: https://svnweb.freebsd.org/changeset/ports/504440 Log: Adjust USES to attempt to get past the following build failure on GCC-based systems: cc1: error: unrecognized command line option "-std=gnu11" However, this merely uncovers another error: the use of hardcoded x86 assembler. The website is silent on the issue of whether it has ever been tested on !x86. Therefore, mark it ONLY_FOR x86. Approved by: portmgr (tier-2 blanket) Modified: head/devel/rabs/Makefile Modified: head/devel/rabs/Makefile ============================================================================== --- head/devel/rabs/Makefile Mon Jun 17 21:58:26 2019 (r504439) +++ head/devel/rabs/Makefile Mon Jun 17 21:58:49 2019 (r504440) @@ -11,9 +11,12 @@ COMMENT= Generic imperative build system LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= invokes x86 assembly: Error: unrecognized opcode: 'int3' + LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded -USES= gmake localbase:ldflags sqlite +USES= compiler:c11 gmake localbase:ldflags sqlite USE_GITHUB= yes GH_ACCOUNT= wrapl GH_TUPLE= wrapl:minilang:6051e5c:m/minilang
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906172158.x5HLwohu058545>