VitaShell icon indicating copy to clipboard operation
VitaShell copied to clipboard

Broken build.

Open nkrapivin opened this issue 7 years ago • 1 comments

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.

nkrapivin avatar Nov 17 '18 15:11 nkrapivin

+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

TheRadziu avatar Nov 17 '18 15:11 TheRadziu