Skip to content

Commit f792fe0

Browse files
Build all modules
1 parent 929014f commit f792fe0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

tools/build-companion.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ run_pipeline() {
9898
output_error_log "$log_file" "$context (Configuration)"
9999
return 1
100100
fi
101-
if ! execute_with_output "🔧 Native config" "cmake --build . --target native-configure ${cmake_opts}" "$log_file" "$show_details"; then
101+
if ! execute_with_output "🔧 CMake config" "cmake --build . --target native-configure ${cmake_opts}" "$log_file" "$show_details"; then
102102
output_error_log "$log_file" "$context (Native Configure)"
103103
return 1
104104
fi
@@ -110,7 +110,7 @@ run_pipeline() {
110110
"final")
111111
BUILD_OPTIONS="${COMMON_OPTIONS} -DEdgeTX_SUPERBUILD:BOOL=0 -DNATIVE_BUILD:BOOL=1"
112112
clean_build && mkdir -p native/plugins
113-
if ! execute_with_output "🔧 Final config" "cmake -S ${SRCDIR} -B native --toolchain cmake/toolchain/native.cmake ${BUILD_OPTIONS}" "$log_file" "$show_details"; then
113+
if ! execute_with_output "🔧 CMake config" "cmake -S ${SRCDIR} -B native --toolchain cmake/toolchain/native.cmake ${BUILD_OPTIONS}" "$log_file" "$show_details"; then
114114
output_error_log "$log_file" "Final Configuration"
115115
return 1
116116
fi

tools/build-wasm-modules.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828

2929
COMMON_OPTIONS+=" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MESSAGE_LOG_LEVEL=WARNING -Wno-dev"
3030
COMMON_OPTIONS+=" -DCMAKE_MODULE_PATH=/opt/wasi-sdk/share/cmake/"
31-
COMMON_OPTIONS+=" -DEdgeTX_SUPERBUILD:BOOL=0 -DNATIVE_BUILD:BOOL=1 -DDISABLE_COMPANION:BOOL=1"
31+
COMMON_OPTIONS+=" -DEdgeTX_SUPERBUILD:BOOL=0 -DNATIVE_BUILD:BOOL=1"
3232

3333
# Generate EDGETX_VERSION_SUFFIX if not already set
3434
if [[ -z ${EDGETX_VERSION_SUFFIX} ]]; then
@@ -91,7 +91,7 @@ run_pipeline() {
9191
local wasi_toolchain="/opt/wasi-sdk/share/cmake/wasi-sdk-pthread.cmake"
9292

9393
clean_build
94-
if ! execute_with_output "🔧 Final config" "cmake -S ${SRCDIR} -B wasm --toolchain ${wasi_toolchain} ${BUILD_OPTIONS}" "$log_file" "$show_details"; then
94+
if ! execute_with_output "🔧 CMake config" "cmake -S ${SRCDIR} -B wasm --toolchain ${wasi_toolchain} ${BUILD_OPTIONS}" "$log_file" "$show_details"; then
9595
output_error_log "$log_file" "$context (Configuration)"
9696
return 1
9797
fi
@@ -164,9 +164,9 @@ build_plugin() {
164164
}
165165

166166
declare -a simulator_plugins=(
167-
# x9lite x9lites x9d x9dp x9dp2019 x9e
168-
# x7 x7access
169-
# t8 t12 t12max tx12 tx12mk2 t15 t16 t18 t20 t20v2
167+
x9lite x9lites x9d x9dp x9dp2019 x9e
168+
x7 x7access
169+
t8 t12 t12max tx12 tx12mk2 t15 t16 t18 t20 t20v2
170170
xlite xlites
171171
x10 x10express x12s
172172
zorro tx16s tx15

0 commit comments

Comments
 (0)