diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-02-05 12:03:18 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-02-05 12:03:18 +0800 |
commit | 62d39d81446dd7b00c2217aab7a175d533cd5f88 (patch) | |
tree | 3556f6a48894f1a64fe8cbdfed336a7542cd6d72 | |
parent | 049a660184fe081f435600236d94e8eb485d18aa (diff) | |
download | freebsd-ports-gnome-62d39d81446dd7b00c2217aab7a175d533cd5f88.tar.gz freebsd-ports-gnome-62d39d81446dd7b00c2217aab7a175d533cd5f88.tar.zst freebsd-ports-gnome-62d39d81446dd7b00c2217aab7a175d533cd5f88.zip |
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)
-rw-r--r-- | emulators/skyeye/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulators/skyeye/Makefile b/emulators/skyeye/Makefile index 1051233256f1..255ea7045ba9 100644 --- a/emulators/skyeye/Makefile +++ b/emulators/skyeye/Makefile @@ -13,6 +13,7 @@ COMMENT= Environment simulates typical ARM-base embedded computer systems LICENSE= GPLv2 +USE_CSTD= gnu89 USE_BINUTILS= yes USE_GCC= any GNU_CONFIGURE= yes |