mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-12 15:30:56 +00:00
lit: Issue a note when multiprocessing fails to load
If multiprocessing was requested, detected as available and subsequently failed to initialize it's worth letting the user know about it before falling back to threads. This condition can arise in certain OpenBSD / FreeBSD Python versions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193465 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8d93aa0de3
commit
a685c13918
@ -218,6 +218,7 @@ class Run(object):
|
||||
consumer = MultiprocessResultsConsumer(self, display, jobs)
|
||||
except ImportError:
|
||||
# Workaround for BSD: http://bugs.python.org/issue3770
|
||||
self.lit_config.note('failed to initialize multiprocessing')
|
||||
consumer = None
|
||||
if not consumer:
|
||||
task_impl = threading.Thread
|
||||
|
Loading…
x
Reference in New Issue
Block a user