Papierkorb / bindgen

Binding and wrapper generator for C/C++ libraries
GNU General Public License v3.0
179 stars 18 forks source link

Do not build C++ parts in parallel. #120

Closed f-fr closed 2 years ago

f-fr commented 2 years ago

By default the C++ files of the parser should not be compiled in parallel because this easily uses up all the available system memory. The number of files is not that large anyway, so in most cases it should not matter.

This actually happened to me several times.

docelic commented 2 years ago

Thanks!