apps/examples/hello_rust/Makefile: Add -O flag

This commit is contained in:
rushabhvg 2024-03-18 18:24:23 +05:30 committed by Xiang Xiao
parent 8cb0bf3eab
commit b311c46778

View File

@ -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