Not waste so much time building the code - twongjirad/LArLiteSoftCookBook GitHub Wiki

MRB got you waiting?

Usually, to build one uses

mrb b -j

or

mrb i -j

These calls call cmake, which takes forever to do a bunch of checks.

But if you're just editing the source (and not adding files) you can skip all the cmake stuff and just build by doing

make --directory=${MRB_BUILDDIR}/uboonecode/[the module you're working on]

Note that once everything is built, you'll need to make sure everything is setup properly (namely that the new libraries are installed in the right locations). One should run

mrb i -j

to complete these steps.