auto3000 / meta-pedalpi

Yocto meta-layer for pedalpi
MIT License
0 stars 0 forks source link

In lilv recipe get_waf_parallel_make function has been removed #12

Closed Rezzonics closed 3 years ago

Rezzonics commented 4 years ago

In recipe recipes-core/lilv/lilv.bb get_waf_parallel_make(d) function has been and replaced by something like oe.utils.parallel_make_argument(d, '-j%d', limit=64)

auto3000 commented 4 years ago

Thanks, I was meeting this problem at that moment, it helps.

auto3000 commented 4 years ago

I was figuring if "parallel" is very for a small machine. I think now we shall remove this parallelism and keep the parallelism at bitbake level... I think I will remove it

auto3000 commented 4 years ago

I changed my mind. When I developed this recipe, I think I was happy to get the compilation faster. Let's go for oe.utils.parallel_make_argument(d, '-j%d', limit=64) and thanks again for this tip