Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Sep 2020 12:11:37 +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: r547439 - head/benchmarks/fio
Message-ID:  <202009031211.083CBbDT068942@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Thu Sep  3 12:11:37 2020
New Revision: 547439
URL: https://svnweb.freebsd.org/changeset/ports/547439

Log:
  benchmarks/fio: fix build on GCC architectures
  
  Use C11 compiler:
  Your compiler doesn't support C11 atomics. gcc 4.9/clang 3.6 are the
  minimum versions with it - perhaps your compiler is too old?
  C11 atomics support not found

Modified:
  head/benchmarks/fio/Makefile

Modified: head/benchmarks/fio/Makefile
==============================================================================
--- head/benchmarks/fio/Makefile	Thu Sep  3 12:08:03 2020	(r547438)
+++ head/benchmarks/fio/Makefile	Thu Sep  3 12:11:37 2020	(r547439)
@@ -13,7 +13,7 @@ LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 HAS_CONFIGURE=	yes
-USES=		gmake tar:bzip2
+USES=		compiler:c11 gmake tar:bzip2
 
 CONFIGURE_ARGS+=	--disable-native
 



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