From 3874fb5f033f166b9490cabf9f7cc5ed762d6642 Mon Sep 17 00:00:00 2001 From: Shell Date: Tue, 24 Dec 2024 14:15:52 +0800 Subject: [PATCH] feat: default to build dynamic APPs There are several reasons to build dynamic APP as a default: 1. For saving more storage on the target platform. 2. All mainline platforms of RT-Thread Smart support libc.so, making it painless to do so. --- env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.sh b/env.sh index de99025..eb2a5dd 100644 --- a/env.sh +++ b/env.sh @@ -3,7 +3,7 @@ script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" export XMAKE_RCFILES=${script_dir}/tools/scripts/xmake.lua -export RT_XMAKE_LINK_TYPE="static" +export RT_XMAKE_LINK_TYPE="shared" # Check whether unzip is installed.