unikraft / pykraft

Python library for configuring and building unikernels
Other
177 stars 42 forks source link

kraft/cmd: Add option to build on x CPUs #125

Open StefanJum opened 1 year ago

StefanJum commented 1 year ago

The -j, --fast option only passed -j -1 to make, which led to a lot of jobs being created increasing the load on the system.

This commit considers the argument passed to the -j, --fast command and passes it to make. If no argument is given, it will pass -1.

Signed-off-by: Stefan Jumarea stefanjumarea02@gmail.com