summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-09-23 12:02:37 +0100
committerCarl Hetherington <cth@carlh.net>2016-09-23 12:02:37 +0100
commit145062c09110f006467f0cacdff048d9d9fa38f5 (patch)
treef1b3d45eaae363288ecbbf7fbd101526ab789f23 /cscript
parentd462bce261da5836b8ee8703ef8c4807f50a5586 (diff)
Try building Windows debug versions with static linking to DoM's own libraries.
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/cscript b/cscript
index c5accebbb..3b66c8341 100644
--- a/cscript
+++ b/cscript
@@ -251,6 +251,10 @@ def configure_options(target):
elif target.version == '7':
opt += ' --workaround-gssapi --static-xmlpp'
+ # Build Windows debug versions with static linking as I think gdb works better then
+ if target.debug and target.platform == 'windows':
+ opt += ' --static-dcpomatic'
+
return opt
def build(target, options):