diff options
| author | Andy Wang <cbeuw.andy@gmail.com> | 2021-12-06 13:46:14 +0000 |
|---|---|---|
| committer | Andy Wang <cbeuw.andy@gmail.com> | 2021-12-06 13:46:14 +0000 |
| commit | 4abed5000b73efdbf12fda2148aa14185461b370 (patch) | |
| tree | dc4a76d483ba79857c05a45c5cc7438e68f1e450 /src | |
| parent | e5796c46de20856f2eee0d8651572343d4fea9db (diff) | |
| download | rust-4abed5000b73efdbf12fda2148aa14185461b370.tar.gz rust-4abed5000b73efdbf12fda2148aa14185461b370.zip | |
Provide .dwo paths to llvm-dwp explicitly
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-make-fulldeps/split-dwarf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-make-fulldeps/split-dwarf/Makefile b/src/test/run-make-fulldeps/split-dwarf/Makefile index 5fef8eac352..c5f649a13b4 100644 --- a/src/test/run-make-fulldeps/split-dwarf/Makefile +++ b/src/test/run-make-fulldeps/split-dwarf/Makefile @@ -5,10 +5,10 @@ all: packed remapped remapped: - $(RUSTC) -Z unstable-options -C split-debuginfo=packed -C debuginfo=2 --remap-path-prefix $$PWD= foo.rs -g + $(RUSTC) -Z unstable-options -C split-debuginfo=packed -C debuginfo=2 --remap-path-prefix $$PWD=/a foo.rs -g objdump -Wi $(TMPDIR)/foo | grep $$PWD && exit 1 || exit 0 - $(RUSTC) -Z unstable-options -C split-debuginfo=unpacked -C debuginfo=2 --remap-path-prefix $$PWD= foo.rs -g + $(RUSTC) -Z unstable-options -C split-debuginfo=unpacked -C debuginfo=2 --remap-path-prefix $$PWD=/a foo.rs -g objdump -Wi $(TMPDIR)/foo | grep $$PWD && exit 1 || exit 0 packed: |
