Skip to content

Commit 5af644c

Browse files
committed
[CI] run-make/thumb: Add LD_LIBRARY_PATH experiment, etc.
1 parent 9e2dc55 commit 5af644c

File tree

1 file changed

+2
-1
lines changed
  • src/test/run-make/thumb-none-cortex-m

1 file changed

+2
-1
lines changed

src/test/run-make/thumb-none-cortex-m/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ ifeq ($(TARGET),thumbv7m-none-eabi)
66
#TMP_DIR := $(shell mktemp -d)
77
TMP_DIR := /tmp/safe_place
88
CRATE := cortex-m
9+
LD_LIBRARY_PATH=/home/sekineh/rustme9/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/thumbv7m-none-eabi/lib
910

1011
all:
1112
env > env.txt
1213
mkdir -p $(TMP_DIR)
1314
-cd $(TMP_DIR) && rm -rf $(CRATE)
1415
cd $(TMP_DIR) && $(CARGO) clone $(CRATE) --vers 0.5.0
1516
pwd
16-
cd $(TMP_DIR) && cd $(CRATE) && $(CARGO) build --target $(TARGET) -vv 2>&1 | tee cargo-fail-vv-9.2.log
17+
cd $(TMP_DIR) && cd $(CRATE) && env RUST_LOG=debug $(CARGO) build -j 1 --target $(TARGET) -vv 2>&1 | tee cargo-fail-vv-9.2.log
1718
else
1819

1920
all:

0 commit comments

Comments
 (0)