Skip to content

Commit 6997adf

Browse files
committed
Remove rustboot from the repository.
1 parent ef75860 commit 6997adf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2
-37556
lines changed

Diff for: configure

-6
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ fi
176176
step_msg "making directories"
177177
for i in \
178178
doc \
179-
boot/fe boot/me boot/be boot/driver boot/util \
180179
rt rt/isaac rt/bigint rt/sync rt/test \
181180
rustllvm \
182181
dl stage0 stage1 stage2 stage3 \
@@ -203,11 +202,6 @@ probe CFG_CLANG clang++
203202
probe CFG_GCC gcc
204203
probe CFG_LLVM_CONFIG llvm-config
205204
probe CFG_VALGRIND valgrind
206-
probe CFG_OCAMLC ocamlc
207-
probe CFG_OCAMLOPT ocamlopt
208-
probe CFG_OCAMLC_OPT ocamlc.opt
209-
probe CFG_OCAMLOPT_OPT ocamlopt.opt
210-
probe CFG_FLEXLINK flexlink
211205
probe CFG_MAKEINFO makeinfo
212206
probe CFG_TEXI2PDF texi2pdf
213207
probe CFG_TEX tex

Diff for: mk/boot.mk

-98
This file was deleted.

Diff for: mk/clean.mk

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ clean:
1717
@$(call E, cleaning)
1818
$(Q)rm -f $(RUNTIME_OBJS) $(RUNTIME_DEF)
1919
$(Q)rm -f $(RUSTLLVM_LIB_OBJS) $(RUSTLLVM_OBJS_OBJS) $(RUSTLLVM_DEF)
20-
$(Q)rm -f $(BOOT_CMOS) $(BOOT_CMIS) $(BOOT_CMXS) $(BOOT_OBJS)
2120
$(Q)rm -f $(ML_DEPFILES) $(C_DEPFILES) $(CRATE_DEPFILES)
2221
$(Q)rm -f $(ML_DEPFILES:%.d=%.d.tmp)
2322
$(Q)rm -f $(C_DEPFILES:%.d=%.d.tmp)

Diff for: mk/platform.mk

-6
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ ifdef CFG_WINDOWSY
8787
CFG_PATH_MUNGE := $(strip perl -i.bak -p \
8888
-e 's@\\(\S)@/\1@go;' \
8989
-e 's@^/([a-zA-Z])/@\1:/@o;')
90-
ifdef CFG_FLEXLINK
91-
CFG_BOOT_NATIVE := 1
92-
endif
9390
CFG_GCCISH_CFLAGS += -march=i686 -O2
9491
CFG_GCCISH_LINK_FLAGS += -shared -fPIC
9592
CFG_DEF_SUFFIX := .def
@@ -106,8 +103,6 @@ ifdef CFG_UNIXY
106103
$(CFG_LDENV)=$(call CFG_TESTLIB,$(1)):$(CFG_LDPATH) \
107104
$(CFG_VALGRIND) $(1)
108105

109-
CFG_BOOT_NATIVE := 1
110-
111106
ifdef MINGW_CROSS
112107
CFG_EXE_SUFFIX := .exe
113108
CFG_LIB_NAME=$(1).dll
@@ -118,7 +113,6 @@ ifdef CFG_UNIXY
118113

119114
CFG_INFO := $(info cfg: mingw-cross)
120115
CFG_GCCISH_CROSS := i586-mingw32msvc-
121-
CFG_BOOT_FLAGS += -t win32-x86-pe
122116
ifdef CFG_VALGRIND
123117
CFG_VALGRIND += wine
124118
endif

Diff for: src/README

+1-10
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,7 @@ This is preliminary version of the Rust compiler(s).
22

33
Source layout:
44

5-
boot/ The bootstrap compiler
6-
boot/README - More-detailed guide to it.
7-
boot/fe - Front end (lexer, parser, AST)
8-
boot/me - Middle end (resolve, check, layout, trans)
9-
boot/be - Back end (IL, RA, insns, asm, objfiles)
10-
boot/util - Ubiquitous helpers
11-
boot/driver - Compiler driver
12-
13-
comp/ The self-hosted compiler ("rustc": incomplete)
14-
comp/* - Similar structure as in boot/
5+
comp/ The self-hosted compiler
156

167
rt/ The runtime system
178
rt/rust_*.cpp - The majority of the runtime services

0 commit comments

Comments
 (0)