Skip to content

Commit 646efb7

Browse files
committed
Use latest hyperlight cargo
Signed-off-by: James Sturtevant <[email protected]>
1 parent 15078ac commit 646efb7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ensure-tools:
1818
cargo install wasm-tools --locked --version 1.235.0
1919
cargo install cargo-component --locked --version 0.21.1
2020
cargo install wit-bindgen-cli --locked --version 0.43.0
21-
cargo install cargo-hyperlight --locked --version 0.1.4
21+
cargo install cargo-hyperlight --git https://github.com/hyperlight-dev/hyperlight
2222

2323
build-all target=default-target features="": (build target features) (build-examples target features)
2424

src/hyperlight_wasm/build.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,7 @@ fn build_wasm_runtime() -> PathBuf {
122122
.arg("-v")
123123
.current_dir(&in_repo_dir)
124124
.env_clear()
125-
.envs(env_vars)
126-
.env("CFLAGS_x86_64_unknown_none", "-fPIC"); // Should this go on cargo hyperlight
125+
.envs(env_vars);
127126

128127
// Add --features gdb if the gdb feature is enabled for this build script
129128
if std::env::var("CARGO_FEATURE_GDB").is_ok() {

src/wasm_runtime/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ reqwest = {version = "0.12", default-features = false, features = ["blocking","
3232
default = []
3333
gdb = ["wasmtime/debug-builtins"]
3434
trace_guest = ["hyperlight-common/trace_guest", "hyperlight-guest/trace_guest", "hyperlight-guest-bin/trace_guest"]
35-

0 commit comments

Comments
 (0)