mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-04 23:07:46 -04:00
Support latest raspberry GLES library name
This commit is contained in:
parent
898d51a7fd
commit
9c0ac97043
2 changed files with 7 additions and 8 deletions
8
Makefile
8
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
|
||||
|
|
7
README
7
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue