From fe55d0fd19418b287c1bd13ccea5ba88d0cd4b8e Mon Sep 17 00:00:00 2001 From: Jukka Jylanki Date: Sun, 21 Jun 2015 23:59:07 +0300 Subject: [PATCH] Fix name of Win32 x86 build platform. Do temp workaround for optimizer build on Windows. --- emsdk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emsdk b/emsdk index 4f63811..a679780 100755 --- a/emsdk +++ b/emsdk @@ -573,7 +573,7 @@ def build_fastcomp_tool(tool): if not success: return False # Make - success = make_build(build_root, build_type, 'x64' if tool.bitness == 64 else 'x86') + success = make_build(build_root, build_type, 'x64' if tool.bitness == 64 else 'Win32') return success def optimizer_build_root(tool): @@ -603,8 +603,8 @@ def build_optimizer_tool(tool): # Make # TODO: Enable the following: -# success = make_build(build_root, build_type, 'x64' if tool.bitness == 64 else 'x86') - success = make_build(build_root, build_type, 'x86') +# success = make_build(build_root, build_type, 'x64' if tool.bitness == 64 else 'Win32') + success = make_build(build_root, build_type, 'Win32') return success def download_and_unzip(zipfile, dest_dir, download_even_if_exists=False):