Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Aug 2018 19:25:48 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478164 - head/devel/gpsim
Message-ID:  <201808261925.w7QJPm5r037956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sun Aug 26 19:25:48 2018
New Revision: 478164
URL: https://svnweb.freebsd.org/changeset/ports/478164

Log:
  devel/gpsim: Fix build with Clang 6
  
  14bit-registers.cc:1778:23: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
      Dprintf(("now=0x%"PRINTF_GINT64_MODIFIER"x\n",get_cycles().get()));
                        ^
  
  ... with a bazillion more like these in the code base
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/gpsim-0.29.0_1.log

Modified:
  head/devel/gpsim/Makefile

Modified: head/devel/gpsim/Makefile
==============================================================================
--- head/devel/gpsim/Makefile	Sun Aug 26 19:04:07 2018	(r478163)
+++ head/devel/gpsim/Makefile	Sun Aug 26 19:25:48 2018	(r478164)
@@ -18,6 +18,7 @@ LIB_DEPENDS=	libpopt.so:devel/popt
 RUN_DEPENDS=	gpasm:devel/gputils
 
 USES=		gmake libtool localbase:ldflags pathfix pkgconfig readline
+USE_CXXSTD=	gnu++98
 USE_GNOME=	glib20
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip



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