Skip to content

Commit 0918feb

Browse files
committed
---
yaml --- r: 134207 b: refs/heads/auto c: 4d2af38 h: refs/heads/master i: 134205: 62e4ab7 134203: 43aa2db 134199: d4589ba 134191: c603494 134175: e65ce24 134143: 804073f v: v3
1 parent e96b440 commit 0918feb

File tree

774 files changed

+32247
-26001
lines changed

Some content is hidden

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

774 files changed

+32247
-26001
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: e5bbbbe274dff5d420f256b58ff107e619ddf86d
16+
refs/heads/auto: 4d2af38611cdeeb804659b5e0695ad2c251db51a
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
#
6666
# * `VERBOSE=1` - Print all commands. Use this to see what's going on.
6767
# * `RUSTFLAGS=...` - Add compiler flags to all `rustc` invocations
68+
# * `JEMALLOC_FLAGS=...` - Pass flags to jemalloc's configure script
6869
#
6970
# * `TESTNAME=...` - Specify the name of tests to run
7071
# * `CHECK_IGNORED=1` - Run normally-ignored tests

branches/auto/README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ documentation.
66
## Quick Start
77

88
1. Download a [binary installer][installer] for your platform.
9-
2. Read the [tutorial].
9+
2. Read the [guide].
1010
3. Enjoy!
1111

1212
> ***Note:*** Windows users can read the detailed
1313
> [getting started][wiki-start] notes on the wiki.
1414
1515
[installer]: http://www.rust-lang.org/install.html
16-
[tutorial]: http://doc.rust-lang.org/tutorial.html
16+
[guide]: http://doc.rust-lang.org/guide.html
1717
[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust
1818
[win-wiki]: https://github.com/rust-lang/rust/wiki/Using-Rust-on-Windows
1919

@@ -54,7 +54,7 @@ documentation.
5454
When complete, `make install` will place several programs into
5555
`/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the
5656
API-documentation tool.
57-
3. Read the [tutorial].
57+
3. Read the [guide].
5858
4. Enjoy!
5959

6060
### Building on Windows
@@ -76,7 +76,7 @@ To easily build on windows we can use [MSYS2](http://sourceforge.net/projects/ms
7676

7777
[repo]: https://github.com/rust-lang/rust
7878
[tarball]: https://static.rust-lang.org/dist/rust-nightly.tar.gz
79-
[tutorial]: http://doc.rust-lang.org/tutorial.html
79+
[guide]: http://doc.rust-lang.org/guide.html
8080

8181
## Notes
8282

@@ -101,6 +101,18 @@ There is a lot more documentation in the [wiki].
101101

102102
[wiki]: https://github.com/rust-lang/rust/wiki
103103

104+
## Getting help and getting involved
105+
106+
The Rust community congregates in a few places:
107+
108+
* [StackOverflow] - Get help here.
109+
* [/r/rust] - General discussion.
110+
* [discuss.rust-lang.org] - For development of the Rust language itself.
111+
112+
[StackOverflow]: http://stackoverflow.com/questions/tagged/rust
113+
[/r/rust]: http://reddit.com/r/rust
114+
[discuss.rust-lang.org]: http://discuss.rust-lang.org/
115+
104116
## License
105117

106118
Rust is primarily distributed under the terms of both the MIT license

branches/auto/configure

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,12 @@ fi
475475
step_msg "validating $CFG_SELF args"
476476
validate_opt
477477

478+
# Temporarily support the old windows triples while the bots make the transition
479+
# XXX Remove me
480+
CFG_BUILD=`echo "${CFG_BUILD}" | sed 's/-pc-mingw32/-w64-mingw32/g'`
481+
CFG_HOST=`echo "${CFG_HOST}" | sed 's/-pc-mingw32/-w64-mingw32/g'`
482+
CFG_TARGET=`echo "${CFG_TARGET}" | sed 's/-pc-mingw32/-w64-mingw32/g'`
483+
478484
step_msg "looking for build programs"
479485

480486
probe_need CFG_PERL perl
@@ -515,6 +521,13 @@ probe CFG_LUALATEX lualatex
515521
probe CFG_GDB gdb
516522
probe CFG_LLDB lldb
517523

524+
if [ ! -z "$CFG_GDB" ]
525+
then
526+
# Extract the version
527+
CFG_GDB_VERSION=$($CFG_GDB --version 2>/dev/null | head -1)
528+
putvar CFG_GDB_VERSION
529+
fi
530+
518531
if [ ! -z "$CFG_LLDB" ]
519532
then
520533
# If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
@@ -700,7 +713,7 @@ then
700713
| cut -d ' ' -f 2)
701714

702715
case $CFG_CLANG_VERSION in
703-
(3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* )
716+
(3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* | 3.6*)
704717
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
705718
if [ -z "$CC" ]
706719
then

branches/auto/mk/crates.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ CRATES := $(TARGET_CRATES) $(HOST_CRATES)
5959
TOOLS := compiletest rustdoc rustc
6060

6161
DEPS_core :=
62-
DEPS_rlibc :=
62+
DEPS_rlibc := core
6363
DEPS_unicode := core
6464
DEPS_alloc := core libc native:jemalloc
6565
DEPS_debug := std
@@ -70,7 +70,7 @@ DEPS_graphviz := std
7070
DEPS_green := std native:context_switch
7171
DEPS_rustuv := std native:uv native:uv_support
7272
DEPS_native := std
73-
DEPS_syntax := std term serialize log fmt_macros debug
73+
DEPS_syntax := std term serialize log fmt_macros debug arena
7474
DEPS_rustc := syntax flate arena serialize getopts rbml \
7575
time log graphviz debug rustc_llvm rustc_back
7676
DEPS_rustc_llvm := native:rustllvm libc std

branches/auto/mk/dist.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ distcheck-tar-src: dist-tar-src
112112

113113
ifdef CFG_ISCC
114114

115-
PKG_EXE = dist/$(PKG_NAME)-install.exe
115+
PKG_EXE = dist/$(PKG_NAME)-$(CFG_BUILD).exe
116116

117117
%.iss: $(S)src/etc/pkg/%.iss
118118
cp $< $@
@@ -123,7 +123,7 @@ PKG_EXE = dist/$(PKG_NAME)-install.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
126+
$(CFG_PYTHON) $(S)src/etc/make-win-dist.py tmp/dist/win $(CFG_BUILD)
127127
@$(call E, ISCC: $@)
128128
$(Q)"$(CFG_ISCC)" $<
129129

branches/auto/mk/docs.mk

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
# except according to those terms.
1010

1111
######################################################################
12-
# The various pieces of standalone documentation: guides, tutorial,
13-
# manual etc.
12+
# The various pieces of standalone documentation: guides, manual, etc
1413
#
1514
# The DOCS variable is their names (with no file extension).
1615
#
@@ -32,7 +31,7 @@ DOCS := index intro tutorial guide guide-ffi guide-macros guide-lifetimes \
3231
complement-lang-faq complement-design-faq complement-project-faq rust \
3332
rustdoc guide-unsafe guide-strings
3433

35-
PDF_DOCS := tutorial rust
34+
PDF_DOCS := guide rust
3635

3736
RUSTDOC_DEPS_rust := doc/full-toc.inc
3837
RUSTDOC_FLAGS_rust := --html-in-header=doc/full-toc.inc
@@ -76,21 +75,22 @@ endif
7675

7776
# Check for the various external utilities for the EPUB/PDF docs:
7877

79-
ifeq ($(CFG_PDFLATEX),)
80-
$(info cfg: no pdflatex found, deferring to xelatex)
78+
ifeq ($(CFG_LUALATEX),)
79+
$(info cfg: no lualatex found, deferring to xelatex)
8180
ifeq ($(CFG_XELATEX),)
82-
$(info cfg: no xelatex found, deferring to lualatex)
83-
ifeq ($(CFG_LUALATEX),)
84-
$(info cfg: no lualatex found, disabling LaTeX docs)
81+
$(info cfg: no xelatex found, deferring to pdflatex)
82+
ifeq ($(CFG_PDFLATEX),)
83+
$(info cfg: no pdflatex found, disabling LaTeX docs)
8584
NO_PDF_DOCS = 1
8685
else
87-
CFG_LATEX := $(CFG_LUALATEX)
86+
CFG_LATEX := $(CFG_PDFLATEX)
8887
endif
8988
else
9089
CFG_LATEX := $(CFG_XELATEX)
90+
XELATEX = 1
9191
endif
9292
else
93-
CFG_LATEX := $(CFG_PDFLATEX)
93+
CFG_LATEX := $(CFG_LUALATEX)
9494
endif
9595

9696

@@ -187,12 +187,25 @@ doc/$(1).tex: $$(D)/$(1).md doc/footer.tex doc/version.tex | doc/
187187
ifneq ($(NO_PDF_DOCS),1)
188188
ifeq ($$(SHOULD_BUILD_PDF_DOC_$(1)),1)
189189
DOC_TARGETS += doc/$(1).pdf
190+
ifneq ($(XELATEX),1)
190191
doc/$(1).pdf: doc/$(1).tex
191192
@$$(call E, latex compiler: $$@)
192193
$$(Q)$$(CFG_LATEX) \
193194
-interaction=batchmode \
194195
-output-directory=doc \
195196
$$<
197+
else
198+
# The version of xelatex on the snap bots seemingly ingores -output-directory
199+
# So we'll output to . and move to the doc directory manually.
200+
# This will leave some intermediate files in the build directory.
201+
doc/$(1).pdf: doc/$(1).tex
202+
@$$(call E, latex compiler: $$@)
203+
$$(Q)$$(CFG_LATEX) \
204+
-interaction=batchmode \
205+
-output-directory=. \
206+
$$<
207+
$$(Q)mv ./$(1).pdf $$@
208+
endif # XELATEX
196209
endif # SHOULD_BUILD_PDF_DOCS_$(1)
197210
endif # NO_PDF_DOCS
198211

@@ -212,7 +225,7 @@ $(foreach docname,$(DOCS),$(eval $(call DEF_DOC,$(docname))))
212225
#
213226
# As such, I've attempted to get it working as much as possible (and
214227
# switching from pandoc to rustdoc), but preserving the old behaviour
215-
# (e.g. only running on the tutorial)
228+
# (e.g. only running on the guide)
216229
.PHONY: l10n-mds
217230
l10n-mds: $(D)/po4a.conf \
218231
$(foreach lang,$(L10N_LANG),$(D)/po/$(lang)/*.md.po)
@@ -230,7 +243,7 @@ doc/l10n/$(1)/$(2).html: l10n-mds $$(HTML_DEPS) $$(RUSTDOC_DEPS_$(2))
230243
$$(RUSTDOC) $$(RUSTDOC_HTML_OPTS) $$(RUSTDOC_FLAGS_$(1)) doc/l10n/$(1)/$(2).md
231244
endef
232245

233-
$(foreach lang,$(L10N_LANGS),$(eval $(call DEF_L10N_DOC,$(lang),tutorial)))
246+
$(foreach lang,$(L10N_LANGS),$(eval $(call DEF_L10N_DOC,$(lang),guide)))
234247

235248

236249
######################################################################

branches/auto/mk/main.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,19 @@ endif
9090
CFG_RUSTC_FLAGS := $(RUSTFLAGS)
9191
CFG_GCCISH_CFLAGS :=
9292
CFG_GCCISH_LINK_FLAGS :=
93+
CFG_JEMALLOC_FLAGS :=
9394

9495
ifdef CFG_DISABLE_OPTIMIZE
9596
$(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
9697
CFG_RUSTC_FLAGS +=
98+
CFG_JEMALLOC_FLAGS += --enable-debug
9799
else
98100
# The rtopt cfg turns off runtime sanity checks
99101
CFG_RUSTC_FLAGS += -O --cfg rtopt
100102
endif
101103

104+
CFG_JEMALLOC_FLAGS += $(JEMALLOC_FLAGS)
105+
102106
ifdef CFG_DISABLE_DEBUG
103107
CFG_RUSTC_FLAGS += --cfg ndebug
104108
CFG_GCCISH_CFLAGS += -DRUST_NDEBUG

branches/auto/mk/platform.mk

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -433,36 +433,6 @@ CFG_RUN_mips-unknown-linux-gnu=
433433
CFG_RUN_TARG_mips-unknown-linux-gnu=
434434
RUSTC_FLAGS_mips-unknown-linux-gnu := -C target-cpu=mips32r2 -C target-feature="+mips32r2,+o32" -C soft-float
435435

436-
# i686-pc-mingw32 configuration
437-
CC_i686-pc-mingw32=$(CC)
438-
CXX_i686-pc-mingw32=$(CXX)
439-
CPP_i686-pc-mingw32=$(CPP)
440-
AR_i686-pc-mingw32=$(AR)
441-
CFG_LIB_NAME_i686-pc-mingw32=$(1).dll
442-
CFG_STATIC_LIB_NAME_i686-pc-mingw32=$(1).lib
443-
CFG_LIB_GLOB_i686-pc-mingw32=$(1)-*.dll
444-
CFG_LIB_DSYM_GLOB_i686-pc-mingw32=$(1)-*.dylib.dSYM
445-
CFG_CFLAGS_mips-i686-pc-mingw32 := -m32 -march=i686 -D_WIN32_WINNT=0x0600 $(CFLAGS)
446-
CFG_GCCISH_CFLAGS_i686-pc-mingw32 := -Wall -Werror -g -m32 -march=i686 -D_WIN32_WINNT=0x0600 -I$(CFG_SRC_DIR)src/etc/mingw-fix-include $(CFLAGS)
447-
CFG_GCCISH_CXXFLAGS_i686-pc-mingw32 := -fno-rtti $(CXXFLAGS)
448-
CFG_GCCISH_LINK_FLAGS_i686-pc-mingw32 := -shared -fPIC -g -m32
449-
CFG_GCCISH_DEF_FLAG_i686-pc-mingw32 :=
450-
CFG_GCCISH_PRE_LIB_FLAGS_i686-pc-mingw32 :=
451-
CFG_GCCISH_POST_LIB_FLAGS_i686-pc-mingw32 :=
452-
CFG_DEF_SUFFIX_i686-pc-mingw32 := .mingw32.def
453-
CFG_LLC_FLAGS_i686-pc-mingw32 :=
454-
CFG_INSTALL_NAME_i686-pc-mingw32 =
455-
CFG_LIBUV_LINK_FLAGS_i686-pc-mingw32 := -lws2_32 -lpsapi -liphlpapi
456-
CFG_LLVM_BUILD_ENV_i686-pc-mingw32 := CPATH=$(CFG_SRC_DIR)src/etc/mingw-fix-include
457-
CFG_EXE_SUFFIX_i686-pc-mingw32 := .exe
458-
CFG_WINDOWSY_i686-pc-mingw32 := 1
459-
CFG_UNIXY_i686-pc-mingw32 :=
460-
CFG_PATH_MUNGE_i686-pc-mingw32 :=
461-
CFG_LDPATH_i686-pc-mingw32 :=$(CFG_LDPATH_i686-pc-mingw32):$(PATH)
462-
CFG_RUN_i686-pc-mingw32=PATH="$(CFG_LDPATH_i686-pc-mingw32):$(1)" $(2)
463-
CFG_RUN_TARG_i686-pc-mingw32=$(call CFG_RUN_i686-pc-mingw32,$(HLIB$(1)_H_$(CFG_BUILD)),$(2))
464-
RUSTC_FLAGS_i686-pc-mingw32=-C link-args="-Wl,--large-address-aware"
465-
466436
# i586-mingw32msvc configuration
467437
CC_i586-mingw32msvc=$(CFG_MINGW32_CROSS_PATH)/bin/i586-mingw32msvc-gcc
468438
CXX_i586-mingw32msvc=$(CFG_MINGW32_CROSS_PATH)/bin/i586-mingw32msvc-g++
@@ -503,7 +473,7 @@ CFG_LIB_NAME_i686-w64-mingw32=$(1).dll
503473
CFG_STATIC_LIB_NAME_i686-w64-mingw32=$(1).lib
504474
CFG_LIB_GLOB_i686-w64-mingw32=$(1)-*.dll
505475
CFG_LIB_DSYM_GLOB_i686-w64-mingw32=$(1)-*.dylib.dSYM
506-
CFG_CFLAGS_i586-w64-mingw32 := -march=i586 -m32 -D_WIN32_WINNT=0x0600 $(CFLAGS)
476+
CFG_CFLAGS_i686-w64-mingw32 := -march=i686 -m32 -D_WIN32_WINNT=0x0600 $(CFLAGS)
507477
CFG_GCCISH_CFLAGS_i686-w64-mingw32 := -Wall -Werror -g -m32 -D_WIN32_WINNT=0x0600 $(CFLAGS)
508478
CFG_GCCISH_CXXFLAGS_i686-w64-mingw32 := -fno-rtti $(CXXFLAGS)
509479
CFG_GCCISH_LINK_FLAGS_i686-w64-mingw32 := -shared -g -m32
@@ -521,6 +491,8 @@ CFG_PATH_MUNGE_i686-w64-mingw32 :=
521491
CFG_LDPATH_i686-w64-mingw32 :=$(CFG_LDPATH_i686-w64-mingw32):$(PATH)
522492
CFG_RUN_i686-w64-mingw32=PATH="$(CFG_LDPATH_i686-w64-mingw32):$(1)" $(2)
523493
CFG_RUN_TARG_i686-w64-mingw32=$(call CFG_RUN_i686-w64-mingw32,$(HLIB$(1)_H_$(CFG_BUILD)),$(2))
494+
# Stop rustc from OOMing when building itself (I think)
495+
RUSTC_FLAGS_i686-w64-mingw32=-C link-args="-Wl,--large-address-aware"
524496
RUSTC_CROSS_FLAGS_i686-w64-mingw32 :=
525497

526498
# x86_64-w64-mingw32 configuration

branches/auto/mk/reconfig.mk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) \
1515

1616
ifndef CFG_DISABLE_MANAGE_SUBMODULES
1717
# This is a pretty expensive operation but I don't see any way to avoid it
18-
NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^\(+\|-\)')
18+
# NB: This only looks for '+' status (wrong commit checked out), not '-' status
19+
# (nothing checked out at all). `./configure --{llvm,jemalloc,libuv}-root`
20+
# will explicitly deinitialize the corresponding submodules, and we don't
21+
# want to force constant rebuilds in that case.
22+
NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^+')
1923
else
2024
NEED_GIT_RECONFIG=0
2125
endif

branches/auto/mk/rt.mk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,10 @@ JEMALLOC_DEPS := $(wildcard \
288288
$(S)src/jemalloc/*/*/*/*)
289289
endif
290290

291+
# See #17183 for details, this file is touched during the build process so we
292+
# don't want to consider it as a dependency.
293+
JEMALLOC_DEPS := $(filter-out $(S)src/jemalloc/VERSION,$(JEMALLOC_DEPS))
294+
291295
JEMALLOC_NAME_$(1) := $$(call CFG_STATIC_LIB_NAME_$(1),jemalloc)
292296
ifeq ($$(CFG_WINDOWSY_$(1)),1)
293297
JEMALLOC_REAL_NAME_$(1) := $$(call CFG_STATIC_LIB_NAME_$(1),jemalloc_s)
@@ -301,7 +305,7 @@ JEMALLOC_LOCAL_$(1) := $$(JEMALLOC_BUILD_DIR_$(1))/lib/$$(JEMALLOC_REAL_NAME_$(1
301305
$$(JEMALLOC_LOCAL_$(1)): $$(JEMALLOC_DEPS) $$(MKFILE_DEPS)
302306
@$$(call E, make: jemalloc)
303307
cd "$$(JEMALLOC_BUILD_DIR_$(1))"; "$(S)src/jemalloc/configure" \
304-
$$(JEMALLOC_ARGS_$(1)) --with-jemalloc-prefix=je_ \
308+
$$(JEMALLOC_ARGS_$(1)) --with-jemalloc-prefix=je_ $(CFG_JEMALLOC_FLAGS) \
305309
--build=$(CFG_BUILD) --host=$(1) \
306310
CC="$$(CC_$(1))" \
307311
AR="$$(AR_$(1))" \

branches/auto/mk/tests.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ tidy:
283283
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
284284
$(Q)echo $(ALL_HS) \
285285
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
286-
$(Q)find $(S)src -type f -perm +111 \
286+
$(Q)find $(S)src -type f -perm a+x \
287287
-not -name '*.rs' -and -not -name '*.py' \
288288
-and -not -name '*.sh' \
289289
| grep '^$(S)src/jemalloc' -v \
@@ -623,6 +623,7 @@ CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) := \
623623
--stage-id stage$(1)-$(2) \
624624
--target $(2) \
625625
--host $(3) \
626+
--gdb-version="$(CFG_GDB_VERSION)" \
626627
--android-cross-path=$(CFG_ANDROID_CROSS_PATH) \
627628
--adb-path=$(CFG_ADB) \
628629
--adb-test-dir=$(CFG_ADB_TEST_DIR) \

branches/auto/src/compiletest/common.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ pub struct Config {
130130
// Host triple for the compiler being invoked
131131
pub host: String,
132132

133+
// Version of GDB
134+
pub gdb_version: Option<String>,
135+
133136
// Path to the android tools
134137
pub android_cross_path: Path,
135138

0 commit comments

Comments
 (0)