svn commit: r433347 - head/emulators/skyeye

Jan Beich jbeich at FreeBSD.org
Sun Feb 5 04:03:20 UTC 2017


Author: jbeich
Date: Sun Feb  5 04:03:18 2017
New Revision: 433347
URL: https://svnweb.freebsd.org/changeset/ports/433347

Log:
  emulators/skyeye: unbreak with gcc5 or later
  
  ./arch/mips/libmips.a(decoder.o): In function `decode':
  arch/mips/common/decoder.c:1105: undefined reference to `sign_extend_UInt32'
  ./arch/mips/libmips.a(decoder.o): In function `decode':
  arch/mips/common/decoder.c:240: undefined reference to `divide_UInt32'
  arch/mips/common/decoder.c:231: undefined reference to `divide_Int32'
  arch/mips/common/decoder.c:64: undefined reference to `sign_extend_UInt32'
  collect2: error: ld returned 1 exit status
  
  PR:		216707
  Reported by:	antoine (via exp-run)

Modified:
  head/emulators/skyeye/Makefile   (contents, props changed)

Modified: head/emulators/skyeye/Makefile
==============================================================================
--- head/emulators/skyeye/Makefile	Sun Feb  5 03:30:43 2017	(r433346)
+++ head/emulators/skyeye/Makefile	Sun Feb  5 04:03:18 2017	(r433347)
@@ -13,6 +13,7 @@ COMMENT=	Environment simulates typical A
 
 LICENSE=	GPLv2
 
+USE_CSTD=	gnu89
 USE_BINUTILS=	yes
 USE_GCC=	any
 GNU_CONFIGURE=	yes


More information about the svn-ports-all mailing list