Index: SConstruct |
=================================================================== |
--- SConstruct (revision 6114) |
+++ SConstruct (working copy) |
@@ -124,6 +124,9 @@ |
}, |
'debuggersupport:on': { |
'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT'], |
+ }, |
+ 'debugthreadnames:on': { |
+ 'CPPDEFINES': ['DEBUG_THREAD_NAMES'], |
Søren Thygesen Gjesse
2011/01/03 07:48:34
Why do you want to enable/disable this using condi
marklam
2011/01/04 01:47:09
I didn't know how strict we want to be about not i
|
} |
}, |
'gcc': { |
@@ -734,6 +737,11 @@ |
'default': 'on', |
'help': 'enable debugging of JavaScript code' |
}, |
+ 'debugthreadnames': { |
+ 'values': ['on', 'off'], |
+ 'default': 'off', |
+ 'help': 'enable labelled thread names for debugging' |
+ }, |
'soname': { |
'values': ['on', 'off'], |
'default': 'off', |