From 9c0ac970438d6962bd9e8074bc3b26060a7482ba Mon Sep 17 00:00:00 2001 From: Chips-fr Date: Mon, 25 Dec 2017 17:38:36 +0100 Subject: [PATCH] Support latest raspberry GLES library name --- Makefile | 8 +++++++- README | 7 ------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 997609d..2620a70 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,13 @@ endif ifeq ("$(PLATFORM)",$(filter "$(PLATFORM)","rpi1" "rpi2")) CFLAGS += -DHAVE_GLES -DRASPBERRY CFLAGS += -I/opt/vc/include/ -I/opt/vc/include/interface/vcos/pthreads/ -I/opt/vc/include/interface/vmcs_host/linux/ -LDFLAGS += -ldl -lbcm_host -L/opt/vc/lib -lEGL -lGLESv2 +LDFLAGS += -ldl -lbcm_host -L/opt/vc/lib +# Stupid renaming occured in latest raspbian... +ifneq (,$(wildcard /opt/vc/lib/libbrcmGLESv2.so)) +LDFLAGS += -lbrcmEGL -lbrcmGLESv2 +else +LDFLAGS += -lEGL -lGLESv2 +endif OBJS += platform/linux/emu.o platform/linux/blit.o # FIXME OBJS += platform/common/plat_sdl.o OBJS += platform/libpicofe/plat_sdl.o platform/libpicofe/in_sdl.o diff --git a/README b/README index d9c1091..af1bbfc 100644 --- a/README +++ b/README @@ -12,10 +12,3 @@ then taken over and expanded by notaz. PicoDrive was the first emulator ever to properly emulate Virtua Racing and it's SVP chip. - -How to compile on Raspbian Wheezy: - -export CC=gcc-4.8 -export CXX=g++-4.8 -./configure --platform=rpi2 -make -- 2.39.2