From 7c2761f1f014c43ad8105fc381690a65b213dcd8 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Wed, 14 Oct 2015 17:46:28 +0200 Subject: [PATCH] Windows: Also deploy clang.exe We need both clang.exe and clang-cl.exe for mingw and msvc Change-Id: I2f8883f2ac42636699d4326d4d5f044b34b7d9ba Reviewed-by: Eike Ziller --- scripts/deployqt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/deployqt.py b/scripts/deployqt.py index e7e3319dae1..9b3b0018b8a 100755 --- a/scripts/deployqt.py +++ b/scripts/deployqt.py @@ -237,6 +237,8 @@ def copy_libclang(install_dir, llvm_install_dir): if sys.platform.startswith("win"): deployinfo.append((os.path.join(llvm_install_dir, 'bin', 'libclang.dll'), os.path.join(install_dir, 'bin'))) + deployinfo.append((os.path.join(llvm_install_dir, 'bin', 'clang.exe'), + os.path.join(install_dir, 'bin'))) deployinfo.append((os.path.join(llvm_install_dir, 'bin', 'clang-cl.exe'), os.path.join(install_dir, 'bin'))) else: