diff options
| author | 2015-12-19 08:17:34 +0000 | |
|---|---|---|
| committer | 2015-12-19 08:17:34 +0000 | |
| commit | 85d74eb2c9da9f93bcc822fc12835f372603da2a (patch) | |
| tree | 9520087af070a1ebdfd8e2a241b48eb7dadd10ee /scripts | |
| parent | 548678d5cd493cf3e0f1e71c8877bb44e9a342fe (diff) | |
Emscripten build fixes (nw)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/3rdparty.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 761257dc930..c4f460fe697 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -59,7 +59,7 @@ project "zlib" kind "StaticLib" local version = str_to_version(_OPTIONS["gcc_version"]) - if _OPTIONS["gcc"]~=nil and string.find(_OPTIONS["gcc"], "clang") then + if _OPTIONS["gcc"]~=nil and (string.find(_OPTIONS["gcc"], "clang") or string.find(_OPTIONS["gcc"], "asmjs")) then configuration { "gmake" } if (version >= 30700) then buildoptions { |
