Allow test target to pass without installing
explicitly pass -L target-lib to rustdoc
This commit is contained in:
parent
8aa27ee309
commit
e269a7435e
2 changed files with 3 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ RUSTC_ORIGINAL := $(RUSTC)
|
|||
BARE_RUSTC := $(HOST_RPATH_ENV) '$(RUSTC)'
|
||||
BARE_RUSTDOC := $(HOST_RPATH_ENV) '$(RUSTDOC)'
|
||||
RUSTC := $(BARE_RUSTC) --out-dir $(TMPDIR) -L $(TMPDIR) $(RUSTFLAGS)
|
||||
RUSTDOC := $(BARE_RUSTDOC)
|
||||
RUSTDOC := $(BARE_RUSTDOC) -L $(TARGET_RPATH_DIR)
|
||||
ifdef RUSTC_LINKER
|
||||
RUSTC := $(RUSTC) -Clinker=$(RUSTC_LINKER)
|
||||
RUSTDOC := $(RUSTDOC) --linker $(RUSTC_LINKER) -Z unstable-options
|
||||
|
|
|
|||
|
|
@ -1324,6 +1324,8 @@ impl<'test> TestCx<'test> {
|
|||
let mut rustdoc = Command::new(rustdoc_path);
|
||||
|
||||
rustdoc
|
||||
.arg("-L")
|
||||
.arg(self.config.run_lib_path.to_str().unwrap())
|
||||
.arg("-L")
|
||||
.arg(aux_dir)
|
||||
.arg("-o")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue