gambatte fails to install from source (4.0.2, x86)
-
Hello gentlemen,
I am all new to this and I tried to install the latest Retropie (4.0.2) on my Shuttle XS35GTV2 x86-64 on top of Ubuntu 16.04. Most things worked really well, but for example lr-gambatte failed to install from source.
I had to change some pathes in ~/RetroPie-Setup/scriptmodules/libretrocores/lr-gambatte.sh
function build_lr-gambatte() {
make -C libgambatte -f Makefile.libretro clean
make -C libgambatte -f Makefile.libretro
md_ret_require="$md_build/libgambatte/gambatte_libretro.so"
}changed to (removed subdirs):
function build_lr-gambatte() {
make -f Makefile.libretro clean
make -f Makefile.libretro
md_ret_require="$md_build/gambatte_libretro.so"
}And also this:
function install_lr-gambatte() {
md_ret_files=(
'COPYING'
'changelog'
'README'
'libgambatte/gambatte_libretro.so'
)
}to this (again subdir removed):
function install_lr-gambatte() {
md_ret_files=(
'COPYING'
'changelog'
'README'
'gambatte_libretro.so'
)
}This might have been the totally wrong approach, I have no idea, but at least it installed correctly then :)
Cheers!
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.