We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
_sceNpDrmGetFixedRifName()
refresh.c:22
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.
/tmp/vdpm/vitasdk/arm-vita-eabi/include/psp2/npdrm.h
Did I miss something? or is this a build issue with the latest VITASDK?
The text was updated successfully, but these errors were encountered:
Can you try again with latest commit? Just merged the fix.
Sorry, something went wrong.
Thank you @TheOfficialFloW for your fast response. It is fixed. The build is just completed without any problems.
No branches or pull requests
I installed vitasdk with the following commands,
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 inrefresh.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?
The text was updated successfully, but these errors were encountered: