summaryrefslogtreecommitdiffstats
path: root/waflib/extras/parallel_debug.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 17:31:03 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 18:14:27 +0100
commitf15dd76e1bf5dfbb2b46d302efeaf120d0ba69b0 (patch)
tree3ee0b1e31255c1a35ebe08e8885f755d2563ac9b /waflib/extras/parallel_debug.py
parent6ce4b684f8c2e3077ec145191b9ab902e30bafae (diff)
parentceefc55f3175d6201fb09aa8114916b249a5828d (diff)
downloadlilv-f15dd76e1bf5dfbb2b46d302efeaf120d0ba69b0.tar.gz
lilv-f15dd76e1bf5dfbb2b46d302efeaf120d0ba69b0.tar.bz2
lilv-f15dd76e1bf5dfbb2b46d302efeaf120d0ba69b0.zip
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/extras/parallel_debug.py')
-rw-r--r--waflib/extras/parallel_debug.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/waflib/extras/parallel_debug.py b/waflib/extras/parallel_debug.py
index 35883a3..4ffec5e 100644
--- a/waflib/extras/parallel_debug.py
+++ b/waflib/extras/parallel_debug.py
@@ -3,13 +3,16 @@
# Thomas Nagy, 2007-2010 (ita)
"""
-Debugging helper for parallel compilation, outputs
-a file named pdebug.svg in the source directory::
+Debugging helper for parallel compilation.
+
+Copy it to your project and load it with::
def options(opt):
- opt.load('parallel_debug')
+ opt.load('parallel_debug', tooldir='.')
def build(bld):
...
+
+The build will then output a file named pdebug.svg in the source directory.
"""
import re, sys, threading, time, traceback