
gcc/rust/ChangeLog: * checks/errors/borrowck/ffi-polonius/Cargo.lock: Regenerate. * checks/errors/borrowck/ffi-polonius/Cargo.toml: Update to use source patching instead of vendoring, lower edition to 2018. * checks/errors/borrowck/ffi-polonius/vendor/log/Cargo.toml: Change edition to 2018. * checks/errors/borrowck/ffi-polonius/vendor/log/src/lib.rs: Remove uses of unstable feature. * checks/errors/borrowck/ffi-polonius/.cargo/config.toml: Removed. libgrust/ChangeLog: * libformat_parser/Makefile.am: Avoid using --config as it is unsupported by cargo 1.49. * libformat_parser/Makefile.in: Regenerate. * libformat_parser/generic_format_parser/src/lib.rs: Use extension trait for missing features. * libformat_parser/src/lib.rs: Likewise. * libformat_parser/.cargo/config: Moved to... * libformat_parser/.cargo/config.toml: ...here.
10 lines
337 B
Makefile
10 lines
337 B
Makefile
LIBFORMAT_PARSER = debug/liblibformat_parser.a
|
|
|
|
all-local: $(LIBFORMAT_PARSER)
|
|
|
|
RUST_BUILD_DIR=$(PWD)
|
|
|
|
# TODO: Improve `cargo` invocation with host specific flags, possibly creating a $(CARGO) variable?
|
|
$(LIBFORMAT_PARSER): $(srcdir)/Cargo.toml $(srcdir)/src/*.rs
|
|
cd $(srcdir) && \
|
|
cargo build --offline --target-dir $(RUST_BUILD_DIR)
|