Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ rust-components:
ifeq ($(IS_CI),1)
rust: $(SHIM_METADATA_GEN_DIR)/core.json
@echo "$(CYAN)📦 Building Rust root project...$(RESET)"
cargo build
RUSTFLAGS="-Awarnings" cargo build
else
rust: $(SHIM_METADATA_GEN_DIR)/core.json rust-components
@echo "$(CYAN)📦 Building Rust root project...$(RESET)"
cargo build
RUSTFLAGS="-Awarnings" cargo build
endif

clean-rust:
Expand All @@ -66,7 +66,7 @@ clean-rust:
# === Java Linker Subproject ===
java-linker:
@echo "$(CYAN)📦 Building Java Linker...$(RESET)"
cd $(JAVA_LINKER_DIR) && cargo build
cd $(JAVA_LINKER_DIR) && RUSTFLAGS="-Awarnings" cargo build

clean-java-linker:
@echo "$(CYAN)🧹 Cleaning Java Linker...$(RESET)"
Expand Down
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ All examples live in `tests/binary` and are compiled to JVM bytecode & run/teste
## 🛠 Prerequisites

- **Rust Nightly** (`rustup default nightly`)
- **Gradle 8.5+** (`gradle` in PATH)
- **JDK 8+** (`java` in PATH, and the `JAVA_HOME` environment variable set)
- **Python 3** (`python3` in PATH)

Expand Down