svn commit: r554865 - head/games/libretro-mu/files

Kyle Evans kevans at FreeBSD.org
Wed Nov 11 00:43:17 UTC 2020


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


More information about the svn-ports-all mailing list