##// END OF EJS Templates
setup: build extensions in parallel by default...
Gregory Szorc -
r43314:f9d35f01 default
parent child Browse files
Show More
@@ -490,6 +490,14 b' class hgbuildext(build_ext):'
490
490
491 return build_ext.initialize_options(self)
491 return build_ext.initialize_options(self)
492
492
493 def finalize_options(self):
494 # Unless overridden by the end user, build extensions in parallel.
495 # Only influences behavior on Python 3.5+.
496 if getattr(self, 'parallel', None) is None:
497 self.parallel = True
498
499 return build_ext.finalize_options(self)
500
493 def build_extensions(self):
501 def build_extensions(self):
494 ruststandalones = [e for e in self.extensions
502 ruststandalones = [e for e in self.extensions
495 if isinstance(e, RustStandaloneExtension)]
503 if isinstance(e, RustStandaloneExtension)]
General Comments 0
You need to be logged in to leave comments. Login now