Date: Wed, 11 Nov 2020 00:43:17 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554865 - head/games/libretro-mu/files Message-ID: <202011110043.0AB0hHxG064181@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevans Date: Wed Nov 11 00:43:16 2020 New Revision: 554865 URL: https://svnweb.freebsd.org/changeset/ports/554865 Log: games/libretro-mu: fix -fno-common fallout on armv7 Not yet clear is why this wasn't hit on amd64, because it's clearly an issue. -fno-common became the default in LLVM11/GCC10. Added: head/games/libretro-mu/files/patch-src_pxa260_pxa260__LCD.h (contents, props changed) Added: head/games/libretro-mu/files/patch-src_pxa260_pxa260__LCD.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/libretro-mu/files/patch-src_pxa260_pxa260__LCD.h Wed Nov 11 00:43:16 2020 (r554865) @@ -0,0 +1,11 @@ +--- src/pxa260/pxa260_LCD.h.orig 2020-11-11 00:36:26 UTC ++++ src/pxa260/pxa260_LCD.h +@@ -4,7 +4,7 @@ + #include "pxa260_CPU.h" + #include "pxa260_IC.h" + +-uint16_t* pxa260Framebuffer; ++extern uint16_t* pxa260Framebuffer; + + /* + PXA260 OS LCD controller
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011110043.0AB0hHxG064181>