Some checks failed
Build and Release Mond / build-and-test (arm64, alpine) (push) Failing after 23s
Build and Release Mond / build-and-test (amd64, alpine) (push) Failing after 30s
Build and Release Mond / build-and-test (arm64, ubuntu) (push) Successful in 41s
Build and Release Mond / build-and-test (amd64, ubuntu) (push) Successful in 54s
Build and Release Mond / release (push) Has been skipped
问题分析: - Alpine (musl libc) 不适合使用 depends 系统(为 glibc 设计) - ARM64 交叉编译缺少工具链 - AMD64 依然遇到 execinfo.h 错误 解决方案: 1. 回退到简单 cmake 构建,但使用所有静态库包 2. 安装 -static 后缀的包(boost-static, zeromq-static 等) 3. 强制静态链接标志: - DBUILLD_SHARED_LIBS=OFF - CMAKE_FIND_LIBRARY_SUFFIXES=".a" - CMAKE_EXE_LINKER_FLAGS="-static -static-libgcc -static-libstdc++" 4. 保留 STACK_TRACE=OFF(musl libc 必需)