From b311c46778c0a0ede0ebe1792c5493efb4db74f7 Mon Sep 17 00:00:00 2001 From: rushabhvg Date: Mon, 18 Mar 2024 18:24:23 +0530 Subject: [PATCH] apps/examples/hello_rust/Makefile: Add -O flag --- examples/hello_rust/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello_rust/Makefile b/examples/hello_rust/Makefile index 894de9cea..8415ff402 100644 --- a/examples/hello_rust/Makefile +++ b/examples/hello_rust/Makefile @@ -31,6 +31,6 @@ MODULE = $(CONFIG_EXAMPLES_HELLO_RUST) MAINSRC = hello_rust_main.rs -RUSTFLAGS += -C panic=abort +RUSTFLAGS += -C panic=abort -O include $(APPDIR)/Application.mk