2019-02-11 19:18:47 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#This is a build script used for official releases which does not build the UI
|
|
|
|
#Read the makefile and use "make" to build Mesen normally
|
|
|
|
|
|
|
|
if [ "$1" = libretro ]; then
|
|
|
|
MESENPLATFORM=x64 make clean
|
|
|
|
LTO=true MESENPLATFORM=x64 make libretro -j 16
|
|
|
|
else
|
|
|
|
MESENPLATFORM=x64 BUILDTARGET=core ./buildPGO.sh
|
2019-03-31 14:50:12 -04:00
|
|
|
cp ./InteropDLL/obj.x64/libMesenSCore.x64.dll ./bin/Any\ CPU/PGO\ Profile/Dependencies
|
2019-02-11 19:18:47 -05:00
|
|
|
fi
|