diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -67,6 +67,10 @@ else: }) env = env.Clone() +# Patch mingw SHLIBSUFFIX. +if env["platform"] == "windows" and env["use_mingw"]: + env["SHLIBSUFFIX"] = ".dll" + opts.Update(env) target = env["target"] |