From 4f4f93a893bf7e8c80d0a7be12060b4d09c54b41 Mon Sep 17 00:00:00 2001 From: danbugs Date: Fri, 26 Jun 2026 19:18:28 +0000 Subject: [PATCH] fix: update tar-headers sysroot path for cargo-hyperlight 0.1.12 Signed-off-by: danbugs --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 8011a3913..4b7ebdff1 100644 --- a/Justfile +++ b/Justfile @@ -392,7 +392,7 @@ run-rust-examples-linux target=default-target features="": (run-rust-examples ta ######################### tar-headers: (build-rust-capi) # build-rust-capi is a dependency because we need the hyperlight_guest.h to be built - tar -zcvf include.tar.gz -C {{root}}/target/sysroot/lib/rustlib/x86_64-hyperlight-none/ include -C {{root}}/src/hyperlight_guest_capi include + tar -zcvf include.tar.gz -C {{root}}/target/sysroot/ include -C {{root}}/src/hyperlight_guest_capi include tar-static-lib: (build-rust-capi "release") (build-rust-capi "debug") tar -zcvf hyperlight-guest-c-api-linux.tar.gz -C {{root}}/target/x86_64-hyperlight-none/ release/libhyperlight_guest_capi.a -C {{root}}/target/x86_64-hyperlight-none/ debug/libhyperlight_guest_capi.a