unikraft / pykraft

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

cmd,app: Fix fast builds #86

Closed nderjung closed 2 years ago

nderjung commented 2 years ago

Fix the --fast flag in kraft build. This flag facilitates the make -j sub-command and the current implementation had a bug where it did not pass the flag because it is also possible to set how many cores are to be used via the same --fast flag. Niavely, fast was set to 0 which made all if conditions for adding -n be false.