svn commit: r504440 - head/devel/rabs
Mark Linimon
linimon at FreeBSD.org
Mon Jun 17 21:58:51 UTC 2019
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
More information about the svn-ports-all
mailing list