svn commit: r547439 - head/benchmarks/fio

Piotr Kubaj pkubaj at FreeBSD.org
Thu Sep 3 12:11:38 UTC 2020


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
 


More information about the svn-ports-all mailing list