1
0
Fork 0

Makefile: add --locked

This commit is contained in:
abdul124 2024-08-07 13:24:51 +08:00
parent 78d6b7ddcf
commit 7e52d06b41
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ manifests: $(manifests)
../build/firmware/armv7-none-eabihf/release/runtime: ../build/pl.rs ../build/rustc-cfg ../build/mem.rs $(manifests) $(shell find . -type f -not -name Cargo.toml -print)
cd runtime && \
XBUILD_SYSROOT_PATH=`pwd`/../../build/sysroot \
cargo xbuild --release \
cargo xbuild --release --locked \
--target-dir ../../build/firmware \
--no-default-features --features=target_$(TARGET)
@ -33,7 +33,7 @@ manifests: $(manifests)
../build/firmware/armv7-none-eabihf/release/satman: ../build/pl.rs ../build/rustc-cfg ../build/mem.rs $(manifests) $(shell find . -type f -not -name Cargo.toml -print)
cd satman && \
XBUILD_SYSROOT_PATH=`pwd`/../../build/sysroot \
cargo xbuild --release \
cargo xbuild --release --locked \
--target-dir ../../build/firmware \
--no-default-features --features=target_$(TARGET)