Skip to content

Commit ba9dda4

Browse files
Merge pull request #9 from Plixo2/main
Add missing dependency
2 parents 9b562c0 + fb8506a commit ba9dda4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ rust-components:
5252
ifeq ($(IS_CI),1)
5353
rust: $(SHIM_METADATA_GEN_DIR)/core.json
5454
@echo "$(CYAN)📦 Building Rust root project...$(RESET)"
55-
cargo build
55+
RUSTFLAGS="-Awarnings" cargo build
5656
else
5757
rust: $(SHIM_METADATA_GEN_DIR)/core.json rust-components
5858
@echo "$(CYAN)📦 Building Rust root project...$(RESET)"
59-
cargo build
59+
RUSTFLAGS="-Awarnings" cargo build
6060
endif
6161

6262
clean-rust:
@@ -66,7 +66,7 @@ clean-rust:
6666
# === Java Linker Subproject ===
6767
java-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

7171
clean-java-linker:
7272
@echo "$(CYAN)🧹 Cleaning Java Linker...$(RESET)"

Readme.md

+1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)