diff options
author | 2016-01-04 13:28:40 +0100 | |
---|---|---|
committer | 2016-01-04 13:29:42 +0100 | |
commit | e0deb80b549e8c1683412080cda2536b28c756d0 (patch) | |
tree | 942de968988dbaca18c3b7a2d291d9619042debb /scripts/genie.lua | |
parent | 9ffe6faa4424a1d00b607e3187c62f492c992d16 (diff) |
Fix building on clang, executable fail starting due to mixed allocators (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 93cde1c42b1..d4caa547904 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1058,7 +1058,19 @@ configuration { "osx*" } "pthread", } -configuration { "mingw*" } +configuration { "mingw-clang" } + links { + "gcc", + "stdc++", + "user32", + "winmm", + "advapi32", + "shlwapi", + "wsock32", + "pthread", + } + +configuration { "mingw*-gcc" } linkoptions { "-static-libgcc", "-static-libstdc++", |