summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
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):