Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Aug 2019 04:01:16 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r509405 - head/security/honggfuzz
Message-ID:  <201908200401.x7K41Gmt074588@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Aug 20 04:01:16 2019
New Revision: 509405
URL: https://svnweb.freebsd.org/changeset/ports/509405

Log:
  security/honggfuzz: fix build on GCC architectures
  
  This port requires C11 compiler:
  cc1: error: unrecognized command line option "-std=gnu11"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/security/honggfuzz/Makefile

Modified: head/security/honggfuzz/Makefile
==============================================================================
--- head/security/honggfuzz/Makefile	Tue Aug 20 03:50:06 2019	(r509404)
+++ head/security/honggfuzz/Makefile	Tue Aug 20 04:01:16 2019	(r509405)
@@ -11,11 +11,7 @@ COMMENT=	General-purpose fuzzer with simple, command-l
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_mips=		fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
-BROKEN_mips64=		fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
-BROKEN_powerpc64=	fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
-
-USES=		gmake
+USES=		compiler:c11 gmake
 USE_GITHUB=	yes
 GH_ACCOUNT=	google
 GC_TAGNAME=	6d01e82



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