|
| 1 | +# Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT |
| 2 | +# file at the top-level directory of this distribution and at |
| 3 | +# http://rust-lang.org/COPYRIGHT. |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +# option. This file may not be copied, modified, or distributed |
| 9 | +# except according to those terms. |
| 10 | + |
| 11 | +import sys, os, shutil, subprocess |
| 12 | + |
| 13 | +def find_files(files, path): |
| 14 | + found = [] |
| 15 | + for fname in files: |
| 16 | + for dir in path: |
| 17 | + filepath = os.path.normpath(os.path.join(dir, fname)) |
| 18 | + if os.path.isfile(filepath): |
| 19 | + found.append(filepath) |
| 20 | + break |
| 21 | + else: |
| 22 | + raise Exception("Could not find '%s' in %s" % (fname, path)) |
| 23 | + return found |
| 24 | + |
| 25 | +def make_win_dist(dist_root, target_triple): |
| 26 | + # Ask gcc where it keeps its' stuff |
| 27 | + gcc_out = subprocess.check_output(["gcc.exe", "-print-search-dirs"]) |
| 28 | + bin_path = os.environ["PATH"].split(os.pathsep) |
| 29 | + lib_path = [] |
| 30 | + for line in gcc_out.splitlines(): |
| 31 | + key, val = line.split(':', 1) |
| 32 | + if key == "programs": |
| 33 | + bin_path.extend(val.lstrip(' =').split(';')) |
| 34 | + elif key == "libraries": |
| 35 | + lib_path.extend(val.lstrip(' =').split(';')) |
| 36 | + |
| 37 | + target_tools = ["gcc.exe", "ld.exe", "ar.exe", "dlltool.exe", "windres.exe"] |
| 38 | + |
| 39 | + rustc_dlls = ["libstdc++-6.dll"] |
| 40 | + if target_triple.startswith("i686-"): |
| 41 | + rustc_dlls.append("libgcc_s_dw2-1.dll") |
| 42 | + else: |
| 43 | + rustc_dlls.append("libgcc_s_seh-1.dll") |
| 44 | + |
| 45 | + target_libs = ["crtbegin.o", "crtend.o", "crt2.o", "dllcrt2.o", |
| 46 | + "libadvapi32.a", "libcrypt32.a", "libgcc.a", "libgcc_eh.a", "libgcc_s.a", |
| 47 | + "libimagehlp.a", "libiphlpapi.a", "libkernel32.a", "libm.a", "libmingw32.a", |
| 48 | + "libmingwex.a", "libmsvcrt.a", "libpsapi.a", "libshell32.a", "libstdc++.a", |
| 49 | + "libuser32.a", "libws2_32.a", "libiconv.a", "libmoldname.a"] |
| 50 | + |
| 51 | + # Find mingw artifacts we want to bundle |
| 52 | + target_tools = find_files(target_tools, bin_path) |
| 53 | + rustc_dlls = find_files(rustc_dlls, bin_path) |
| 54 | + target_libs = find_files(target_libs, lib_path) |
| 55 | + |
| 56 | + # Copy runtime dlls next to rustc.exe |
| 57 | + dist_bin_dir = os.path.join(dist_root, "bin") |
| 58 | + for src in rustc_dlls: |
| 59 | + shutil.copy(src, dist_bin_dir) |
| 60 | + |
| 61 | + # Copy platform tools (and another copy of runtime dlls) to platform-spcific bin directory |
| 62 | + target_bin_dir = os.path.join(dist_root, "bin", "rustlib", target_triple, "bin") |
| 63 | + if not os.path.exists(target_bin_dir): |
| 64 | + os.makedirs(target_bin_dir) |
| 65 | + for src in target_tools: |
| 66 | + shutil.copy(src, target_bin_dir) |
| 67 | + |
| 68 | + # Copy platform libs to platform-spcific lib directory |
| 69 | + target_lib_dir = os.path.join(dist_root, "bin", "rustlib", target_triple, "lib") |
| 70 | + if not os.path.exists(target_lib_dir): |
| 71 | + os.makedirs(target_lib_dir) |
| 72 | + for src in target_libs: |
| 73 | + shutil.copy(src, target_lib_dir) |
| 74 | + |
| 75 | + # Copy license files |
| 76 | + lic_dir = os.path.join(dist_root, "bin", "third-party") |
| 77 | + if os.path.exists(lic_dir): |
| 78 | + shutil.rmtree(lic_dir) # copytree() won't overwrite existing files |
| 79 | + shutil.copytree(os.path.join(os.path.dirname(__file__), "third-party"), lic_dir) |
| 80 | + |
| 81 | +if __name__=="__main__": |
| 82 | + make_win_dist(sys.argv[1], sys.argv[2]) |
0 commit comments