Hi there, again i am trying to compile Retroarch from git.
Well this time i need to specify SDL2 root dir is =/usr/local becuase the system version is too old for this release, and if i try to uninstall from synaptic, that want to broke all my system, becuase of that i had compile manually and install the latest version of SDL2 + image + ttf inside /usr/local
Because for another proyects like “solarus” engine for be build sucessfully.
#Get the source code & update it
cd /media/Compartido/Liñux/cdf/git
git clone https://github.com/libretro/RetroArch retroarch
cd retroarch
git pull
./fetch-submodules.sh
#Configure & Try make & Install
./configure \
--disable-systemd \
--enable-ffmpeg \
--enable-steam \
--prefix=/usr ; \
export {C,CXX}FLAGS='-O2 -fPIC -march=native -mtune=native -pipe' ; \
export OPTFLAGS='-O2 -fPIC -march=native -mtune=native -pipe' ; \
make
#SDL2 Fail :
make: *** No hay ninguna regla para construir el objetivo '/usr/include/SDL2/SDL_sensor.h', necesario para 'obj-unix/release/input/input_keymaps.o'. Alto.
And well this is searching in /usr/include, and not inside /usr/local/include
cat /usr/include/SDL2/SDL_sensor.h
cat: /usr/include/SDL2/SDL_sensor.h: No existe el fichero o el directorio
cat /usr/local/include/SDL2/SDL_sensor.h
/*
Simple DirectMedia Layer
Copyright (C) 1997-2019 Sam Lantinga <[email protected]>
… rest of the output
why the configure not had options like cmake i need use something like :
sdl2dir=/usr/local
well thanks for any help can you give me