We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4415694 commit fb8506aCopy full SHA for fb8506a
1 file changed
Makefile
@@ -52,11 +52,11 @@ rust-components:
52
ifeq ($(IS_CI),1)
53
rust: $(SHIM_METADATA_GEN_DIR)/core.json
54
@echo "$(CYAN)📦 Building Rust root project...$(RESET)"
55
- cargo build
+ RUSTFLAGS="-Awarnings" cargo build
56
else
57
rust: $(SHIM_METADATA_GEN_DIR)/core.json rust-components
58
59
60
endif
61
62
clean-rust:
@@ -66,7 +66,7 @@ clean-rust:
66
# === Java Linker Subproject ===
67
java-linker:
68
@echo "$(CYAN)📦 Building Java Linker...$(RESET)"
69
- cd $(JAVA_LINKER_DIR) && cargo build
+ cd $(JAVA_LINKER_DIR) && RUSTFLAGS="-Awarnings" cargo build
70
71
clean-java-linker:
72
@echo "$(CYAN)🧹 Cleaning Java Linker...$(RESET)"
0 commit comments