Closed lahwaacz closed 2 years ago
Running python setup.py build calls the gcc commands sequentially which is pretty slow. Is it possible to enable a parallel build? Using cmake & make/ninja this would be trivial, but I have no idea how it's supposed to be done with setuptools...
python setup.py build
See here. (Also, don't use setup.py as a command-line tool.)
setup.py
OK, thanks.
Running
python setup.py build
calls the gcc commands sequentially which is pretty slow. Is it possible to enable a parallel build? Using cmake & make/ninja this would be trivial, but I have no idea how it's supposed to be done with setuptools...