From 2351c11da4a2ccf1f1ef19f759bf577db3bddc9d Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 7 Apr 2015 13:51:40 +0800 Subject: [PATCH] No more need to ship vc runtime The release version now static links with vc runtime --- script/create-dist.py | 3 --- script/update-external-binaries.py | 1 - 2 files changed, 4 deletions(-) diff --git a/script/create-dist.py b/script/create-dist.py index 9972e5738c82..0b3152b8cbb7 100755 --- a/script/create-dist.py +++ b/script/create-dist.py @@ -38,11 +38,8 @@ TARGET_BINARIES = { 'icudtl.dat', 'libEGL.dll', 'libGLESv2.dll', - 'msvcp120.dll', - 'msvcr120.dll', 'content_resources_200_percent.pak', 'ui_resources_200_percent.pak', - 'vccorlib120.dll', 'xinput1_3.dll', 'natives_blob.bin', 'snapshot_blob.bin', diff --git a/script/update-external-binaries.py b/script/update-external-binaries.py index ad4dc55fcd9d..c497923e491f 100755 --- a/script/update-external-binaries.py +++ b/script/update-external-binaries.py @@ -29,7 +29,6 @@ def main(): download_and_unzip('Squirrel') elif sys.platform in ['cygwin', 'win32']: download_and_unzip('directxsdk') - download_and_unzip('vs2012_crt') with open(version_file, 'w') as f: f.write(VERSION)