mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-09-10 12:02:53 +02:00
Link with -Wl,--pic-veneer
in libretro PlayStation Vita builds
This commit is contained in:
parent
70c5b3dad4
commit
bfb14b43d6
1 changed files with 6 additions and 1 deletions
7
.github/workflows/autobuild.yml
vendored
7
.github/workflows/autobuild.yml
vendored
|
@ -1095,7 +1095,12 @@ jobs:
|
|||
- name: Build frontend
|
||||
run: |
|
||||
cd ~
|
||||
git clone https://github.com/libretro/RetroArch retroarch --depth 1 -b $(curl -s https://api.github.com/repos/libretro/RetroArch/releases/latest | jq -r '.tag_name')
|
||||
tag_name=$(curl -s https://api.github.com/repos/libretro/RetroArch/releases/latest | jq -r '.tag_name')
|
||||
git clone https://github.com/libretro/RetroArch retroarch --depth 1 -b $tag_name
|
||||
if [ $tag_name = 'v1.20.0' ]
|
||||
then
|
||||
sed -i 's/-Wl,-q/-Wl,-q,--pic-veneer/g' retroarch/Makefile.vita
|
||||
fi
|
||||
mv mkxp-z_libretro.a retroarch/libretro_vita.a
|
||||
cd retroarch
|
||||
CLICOLOR_FORCE=1 make -f Makefile.vita LIBRETRO=mkxp-z
|
||||
|
|
Loading…
Add table
Reference in a new issue