TheOfficialFloW / VitaShell

Multi-functional file manager for PS Vita
GNU General Public License v3.0
1.38k stars 224 forks source link

Broken build. #513

Open nkrapivin opened 5 years ago

nkrapivin commented 5 years ago

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.

TheRadziu commented 5 years ago

+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