meshpro / pygalmesh

:spider_web: A Python interface to CGAL's meshing tools
GNU General Public License v3.0
580 stars 57 forks source link

Parallel build #179

Closed lahwaacz closed 2 years ago

lahwaacz commented 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...

nschloe commented 2 years ago

See here. (Also, don't use setup.py as a command-line tool.)

lahwaacz commented 2 years ago

OK, thanks.