File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ rust-components:
5252ifeq ($(IS_CI ) ,1)
5353rust : $(SHIM_METADATA_GEN_DIR ) /core.json
5454 @echo " $( CYAN) 📦 Building Rust root project...$( RESET) "
55- cargo build
55+ RUSTFLAGS= " -Awarnings " cargo build
5656else
5757rust : $(SHIM_METADATA_GEN_DIR ) /core.json rust-components
5858 @echo " $( CYAN) 📦 Building Rust root project...$( RESET) "
59- cargo build
59+ RUSTFLAGS= " -Awarnings " cargo build
6060endif
6161
6262clean-rust :
@@ -66,7 +66,7 @@ clean-rust:
6666# === Java Linker Subproject ===
6767java-linker :
6868 @echo " $( CYAN) 📦 Building Java Linker...$( RESET) "
69- cd $(JAVA_LINKER_DIR ) && cargo build
69+ cd $(JAVA_LINKER_DIR ) && RUSTFLAGS= " -Awarnings " cargo build
7070
7171clean-java-linker :
7272 @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
8383## 🛠 Prerequisites
8484
8585- ** Rust Nightly** (` rustup default nightly ` )
86+ - ** Gradle 8.5+** (` gradle ` in PATH)
8687- ** JDK 8+** (` java ` in PATH, and the ` JAVA_HOME ` environment variable set)
8788- ** Python 3** (` python3 ` in PATH)
8889
You can’t perform that action at this time.
0 commit comments