VitaShell
VitaShell copied to clipboard
Build error with latest VITASDK
I installed vitasdk with the following commands,
cd /tmp
git clone https://github.com/vitasdk/vdpm.git
cd vdpm
export VITASDK=`realpath -m vitasdk`
export PATH=$VITASDK/bin:$PATH
./bootstrap-vitasdk.sh
./install-all.sh
cd ..
Then I started to build VitaShell with the following commands,
git clone https://github.com/TheOfficialFloW/VitaShell.git
mkdir build
cd build
cmake ..
make
The build failed with error as shown in the screenshot below,

The function _sceNpDrmGetFixedRifName() is called with 3 arguments in refresh.c:22, while the vitasdk declares that it has only 2 arguments.
The declaration of the function can be found in file /tmp/vdpm/vitasdk/arm-vita-eabi/include/psp2/npdrm.h, as shown in the screenshot below.

Did I miss something? or is this a build issue with the latest VITASDK?
Can you try again with latest commit? Just merged the fix.
Thank you @TheOfficialFloW for your fast response. It is fixed. The build is just completed without any problems.