Skip to content

Commit 9a9face

Browse files
committed
---
yaml --- r: 100727 b: refs/heads/snap-stage3 c: 47ef200 h: refs/heads/master i: 100725: 992b46e 100723: f081b23 100719: cb67e6a v: v3
1 parent f526592 commit 9a9face

File tree

20 files changed

+465
-823
lines changed

20 files changed

+465
-823
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e3b1f3c443c048913e2d573fcc5a9c2be3484a78
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: db8a580fb42cac26d2f2c69a6ecacc8c499ab71f
4+
refs/heads/snap-stage3: 47ef20014c32443b12a122c0371a87f513830807
55
refs/heads/try: a97642026c18a624ff6ea01075dd9550f8ed07ff
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,3 @@
99
[submodule "src/gyp"]
1010
path = src/gyp
1111
url = https://github.com/rust-lang/gyp.git
12-
[submodule "src/compiler-rt"]
13-
path = src/compiler-rt
14-
url = https://github.com/rust-lang/compiler-rt.git

branches/snap-stage3/Makefile.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,7 @@ endif
355355
# Prerequisites for using the stageN compiler to build target artifacts
356356
TSREQ$(1)_T_$(2)_H_$(3) = \
357357
$$(HSREQ$(1)_H_$(3)) \
358-
$$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a \
359-
$$(TLIB$(1)_T_$(2)_H_$(3))/libcompiler-rt.a
358+
$$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
360359

361360
# Prerequisites for a working stageN compiler and libraries, for a specific
362361
# target

branches/snap-stage3/mk/clean.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ clean-generic-$(2)-$(1):
5454
$(1)/rt \
5555
$(1)/test \
5656
$(1)/stage* \
57-
-type f \( \
5857
-name '*.[odasS]' -o \
5958
-name '*.so' -o \
6059
-name '*.dylib' -o \
@@ -63,7 +62,6 @@ clean-generic-$(2)-$(1):
6362
-name '*.dll' -o \
6463
-name '*.def' -o \
6564
-name '*.bc' \
66-
\) \
6765
| xargs rm -f
6866
$(Q)find $(1)\
6967
-name '*.dSYM' \
@@ -98,7 +96,6 @@ clean$(1)_T_$(2)_H_$(3): \
9896
$$(foreach crate,$$(CRATES),clean$(1)_T_$(2)_H_$(3)-lib-$$(crate)) \
9997
$$(foreach tool,$$(TOOLS),clean$(1)_T_$(2)_H_$(3)-tool-$$(tool))
10098
$$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
101-
$$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/libcompiler-rt.a
10299
$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/librun_pass_stage* # For unix
103100
$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/run_pass_stage* # For windows
104101

branches/snap-stage3/mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ HOST_CRATES := syntax rustc rustdoc fourcc
5555
CRATES := $(TARGET_CRATES) $(HOST_CRATES)
5656
TOOLS := compiletest rustdoc rustc
5757

58-
DEPS_std := native:rustrt native:compiler-rt
58+
DEPS_std := native:rustrt
5959
DEPS_extra := std term sync serialize getopts collections
6060
DEPS_green := std
6161
DEPS_rustuv := std native:uv native:uv_support

branches/snap-stage3/mk/install.mk

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ install-target-$(1)-host-$(2): \
9696
$$(call INSTALL_LIB,$$(call CFG_LIB_GLOB_$(1),$$(crate)));\
9797
$$(call INSTALL_LIB,$$(call CFG_RLIB_GLOB,$$(crate)));)
9898
$$(Q)$$(call INSTALL_LIB,libmorestack.a)
99-
$$(Q)$$(call INSTALL_LIB,libcompiler-rt.a)
10099

101100
endef
102101

@@ -111,7 +110,6 @@ install-target-$(1)-host-$(2): $$(CSREQ$$(ISTAGE)_T_$(1)_H_$(2))
111110
$$(Q)$$(foreach crate,$$(TARGET_CRATES),\
112111
$$(call INSTALL_LIB,$$(call CFG_RLIB_GLOB,$$(crate)));)
113112
$$(Q)$$(call INSTALL_LIB,libmorestack.a)
114-
$$(Q)$$(call INSTALL_LIB,libcompiler-rt.a)
115113
endef
116114

117115
$(foreach target,$(CFG_TARGET), \

branches/snap-stage3/mk/rt.mk

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -217,37 +217,6 @@ $$(LIBUV_DIR_$(1))/Release/libuv.a: $$(LIBUV_DEPS) $$(LIBUV_MAKEFILE_$(1)) \
217217

218218
endif
219219

220-
################################################################################
221-
# compiler-rt
222-
################################################################################
223-
224-
ifdef CFG_ENABLE_FAST_MAKE
225-
COMPRT_DEPS := $(S)/.gitmodules
226-
else
227-
COMPRT_DEPS := $(wildcard \
228-
$(S)src/compiler-rt/* \
229-
$(S)src/compiler-rt/*/* \
230-
$(S)src/compiler-rt/*/*/* \
231-
$(S)src/compiler-rt/*/*/*/*)
232-
endif
233-
234-
COMPRT_NAME_$(1) := $$(call CFG_STATIC_LIB_NAME_$(1),compiler-rt)
235-
COMPRT_LIB_$(1) := $$(RT_OUTPUT_DIR_$(1))/$$(COMPRT_NAME_$(1))
236-
COMPRT_BUILD_DIR_$(1) := $$(RT_OUTPUT_DIR_$(1))/compiler-rt
237-
238-
$$(COMPRT_LIB_$(1)): $$(COMPRT_DEPS)
239-
@$$(call E, make: compiler-rt)
240-
$$(Q)$$(MAKE) -C "$(S)src/compiler-rt" \
241-
ProjSrcRoot="$(S)src/compiler-rt" \
242-
ProjObjRoot="$$(abspath $$(COMPRT_BUILD_DIR_$(1)))" \
243-
CC="$$(CC_$(1))" \
244-
AR="$$(AR_$(1))" \
245-
RANLIB="$$(AR_$(1)) s" \
246-
CFLAGS="$$(CFG_GCCISH_CFLAGS_$(1))" \
247-
TargetTriple=$(1) \
248-
triple-runtime
249-
$$(Q)cp $$(COMPRT_BUILD_DIR_$(1))/triple/runtime/libcompiler_rt.a $$(COMPRT_LIB_$(1))
250-
251220
endef
252221

253222
# Instantiate template for all stages/targets

branches/snap-stage3/mk/target.mk

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,6 @@ $$(TBIN$(1)_T_$(2)_H_$(3))/:
138138
$$(TLIB$(1)_T_$(2)_H_$(3))/:
139139
mkdir -p $$@
140140

141-
$$(TLIB$(1)_T_$(2)_H_$(3))/libcompiler-rt.a: \
142-
$$(RT_OUTPUT_DIR_$(2))/$$(call CFG_STATIC_LIB_NAME_$(2),compiler-rt) \
143-
| $$(TLIB$(1)_T_$(2)_H_$(3))/ $$(SNAPSHOT_RUSTC_POST_CLEANUP)
144-
@$$(call E, cp: $$@)
145-
$$(Q)cp $$< $$@
146-
147141
$$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a: \
148142
$$(RT_OUTPUT_DIR_$(2))/$$(call CFG_STATIC_LIB_NAME_$(2),morestack) \
149143
| $$(TLIB$(1)_T_$(2)_H_$(3))/ $$(SNAPSHOT_RUSTC_POST_CLEANUP)

branches/snap-stage3/mk/tests.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ tidy:
262262
| grep '^$(S)src/gyp' -v \
263263
| grep '^$(S)src/etc' -v \
264264
| grep '^$(S)src/doc' -v \
265-
| grep '^$(S)src/compiler-rt' -v \
266265
| xargs $(CFG_PYTHON) $(S)src/etc/check-binaries.py
267266

268267
endif

branches/snap-stage3/src/compiler-rt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)