X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=d2f8a73cfb8ab390d80c0bfcba2159714520e19c;hb=3ff75a6e082c03f9b3c86693c864fd0959bdcee1;hp=ef67e544ffad96120bd645f2632263a3c79c634a;hpb=f9d0bc389d3f36263fb7a3b54d2263878a8ea7fb;p=dcpomatic.git diff --git a/cscript b/cscript index ef67e544f..d2f8a73cf 100644 --- a/cscript +++ b/cscript @@ -233,7 +233,7 @@ def dependencies(target): ffmpeg_options = {} return (('ffmpeg-cdist', '1d4a1a4', ffmpeg_options), - ('libdcp', 'd6fda12'), + ('libdcp', 'b602b9e'), ('libsub', '3db5052')) def configure_options(target): @@ -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):