This is an automated email from the ASF dual-hosted git repository. yuanz pushed a commit to branch release-v0.3.0 in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git
commit 2892fbc59d1c51971c72ee5cf268fc1e5638d876 Author: Yuan Zhuang <[email protected]> AuthorDate: Fri Jun 28 02:15:36 2024 +0000 fix supp_plugins-rs ci error --- Makefile | 2 +- examples/supp_plugin-rs/plugin/Makefile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 263328b..e0b2650 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ OPTEE_CLIENT_FLAGS ?= CROSS_COMPILE="$(CCACHE) $(AARCH_CROSS_COMPILE)" \ optee-client: make -C $(OPTEE_CLIENT_PATH) $(OPTEE_CLIENT_FLAGS) -examples: toolchains optee-os optee-client $(EXAMPLES) +examples: $(EXAMPLES) $(EXAMPLES): make -C $@ diff --git a/examples/supp_plugin-rs/plugin/Makefile b/examples/supp_plugin-rs/plugin/Makefile index 883c6c6..21057e0 100644 --- a/examples/supp_plugin-rs/plugin/Makefile +++ b/examples/supp_plugin-rs/plugin/Makefile @@ -38,9 +38,10 @@ all: host host: @cargo build --target $(TARGET) --release + cp $(CURDIR)/target/$(TARGET)/release/lib$(NAME).so $(CURDIR)/target/$(TARGET)/release/$(PLUGIN_UUID).plugin.so fmt: @cargo fmt - cp $(CURDIR)/target/$(TARGET)/release/lib$(NAME).so $(CURDIR)/target/$(TARGET)/release/$(PLUGIN_UUID).plugin.so + clean: @cargo clean --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
