Skip to content

Commit 7085b3e

Browse files
committed
Package rustc's mingw dependencies into Windows installer.
gcc, ld, ar, dlltool, windres go into $(RUST)/bin/rustlib/<triple>/bin/ platform libraries and startup objects got into $(RUST)/bin/rustlib/<triple>/lib/
1 parent 0ac9e9b commit 7085b3e

File tree

4 files changed

+86
-28
lines changed

4 files changed

+86
-28
lines changed

mk/dist.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ PKG_EXE = dist/$(PKG_NAME)-$(CFG_BUILD).exe
123123
$(PKG_EXE): rust.iss modpath.iss upgrade.iss LICENSE.txt rust-logo.ico \
124124
$(CSREQ3_T_$(CFG_BUILD)_H_$(CFG_BUILD)) \
125125
dist-prepare-win
126-
$(CFG_PYTHON) $(S)src/etc/copy-runtime-deps.py tmp/dist/win/bin $(CFG_BUILD)
126+
$(CFG_PYTHON) $(S)src/etc/make-win-dist.py tmp/dist/win $(CFG_BUILD)
127127
@$(call E, ISCC: $@)
128128
$(Q)"$(CFG_ISCC)" $<
129129

src/etc/copy-runtime-deps.py

-24
This file was deleted.

src/etc/make-win-dist.py

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
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])

src/etc/snapshot.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ def get_winnt_runtime_deps(platform):
157157
path_dirs = os.environ["PATH"].split(os.pathsep)
158158
for name in deps:
159159
for dir in path_dirs:
160-
matches = glob.glob(os.path.join(dir, name))
161-
if matches:
162-
runtime_deps.append(matches[0])
160+
filepath = os.path.join(dir, name)
161+
if os.path.isfile(filepath):
162+
runtime_deps.append(filepath)
163163
break
164164
else:
165165
raise Exception("Could not find runtime dependency: %s" % name)

0 commit comments

Comments
 (0)