You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# --cmake-args= Additional arguments passed to cmake configure
10
11
11
12
set -eu
12
13
@@ -24,6 +25,7 @@ build_type="Release"
24
25
build_devtools=OFF
25
26
build_with_etdump=OFF
26
27
is_linux_musl=0
28
+
extra_cmake_args=()
27
29
target_cpu=""
28
30
29
31
help() {
@@ -33,6 +35,7 @@ help() {
33
35
echo" --build_type=<TYPE> Build with Release, Debug, RelWithDebInfo, UndefinedSanitizer or AddressSanitizer, default is ${build_type}"
34
36
echo" --devtools Build Devtools libs"
35
37
echo" --etdump Adds Devtools etdump support to track timing, etdump area will be base64 encoded in the log"
38
+
echo" --cmake-args=<ARGS> Additional arguments passed to cmake configure"
36
39
echo" --toolchain=<TOOLCHAIN> Toolchain can be specified (arm-none-eabi-gcc, arm-zephyr-eabi-gcc, aarch64-linux-musl-gcc). Default: ${toolchain}"
37
40
echo" --target_cpu=<CPU> Override the toolchain's default TARGET_CPU (e.g. cortex-m4). Switching target_cpu reuses the same cmake-out dir, so clear ${et_build_root}/cmake-out first to avoid stale per-CPU artifacts. Default: unset (toolchain default)."
0 commit comments