VitaShell
VitaShell copied to clipboard
Broken build.
I can't build VitaShell. Since it can't build needed plugins.
make[2]: *** No rule to build target «modules/usbdevice/usbdevice.skprx»needed for «build/modules/usbdevice/usbdevice.skprx.o». Stop.
make[1]: *** [CMakeFiles/Makefile2:146: CMakeFiles/VitaShell.dir/all] Error
make: *** [Makefile:84: all] Error 2
But when going to build/modules/"modulenamehere" and "make-ing" them all, VitaShell builds.
+1 same happens on WSL.
current workaround is to build every module one by one, and here is one liner to do everything:
mkdir build && cd build && cmake .. && cd modules/kernel && make && cd ../patch && make && cd ../usbdevice && make && cd ../user && make && cd ../.. && make