File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ rust-components:
52
52
ifeq ($(IS_CI ) ,1)
53
53
rust : $(SHIM_METADATA_GEN_DIR ) /core.json
54
54
@echo " $( CYAN) 📦 Building Rust root project...$( RESET) "
55
- cargo build
55
+ RUSTFLAGS= " -Awarnings " cargo build
56
56
else
57
57
rust : $(SHIM_METADATA_GEN_DIR ) /core.json rust-components
58
58
@echo " $( CYAN) 📦 Building Rust root project...$( RESET) "
59
- cargo build
59
+ RUSTFLAGS= " -Awarnings " cargo build
60
60
endif
61
61
62
62
clean-rust :
@@ -66,7 +66,7 @@ clean-rust:
66
66
# === Java Linker Subproject ===
67
67
java-linker :
68
68
@echo " $( CYAN) 📦 Building Java Linker...$( RESET) "
69
- cd $(JAVA_LINKER_DIR ) && cargo build
69
+ cd $(JAVA_LINKER_DIR ) && RUSTFLAGS= " -Awarnings " cargo build
70
70
71
71
clean-java-linker :
72
72
@echo " $( CYAN) 🧹 Cleaning Java Linker...$( RESET) "
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ All examples live in `tests/binary` and are compiled to JVM bytecode & run/teste
83
83
## 🛠 Prerequisites
84
84
85
85
- ** Rust Nightly** (` rustup default nightly ` )
86
+ - ** Gradle 8.5+** (` gradle ` in PATH)
86
87
- ** JDK 8+** (` java ` in PATH, and the ` JAVA_HOME ` environment variable set)
87
88
- ** Python 3** (` python3 ` in PATH)
88
89
You can’t perform that action at this time.
0 commit comments