This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit c60b98096896949e416029448f6832960d6d8f52 Author: xuxin19 <[email protected]> AuthorDate: Tue Oct 22 17:08:57 2024 +0800 cmake(bugfix):fix robot openlibm cmake build missing source error Signed-off-by: xuxin19 <[email protected]> --- arch/x86_64/src/intel64/CMakeLists.txt | 2 +- libs/libm/openlibm/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86_64/src/intel64/CMakeLists.txt b/arch/x86_64/src/intel64/CMakeLists.txt index f4933d8f96..67d4354750 100644 --- a/arch/x86_64/src/intel64/CMakeLists.txt +++ b/arch/x86_64/src/intel64/CMakeLists.txt @@ -47,7 +47,7 @@ set(SRCS intel64_check_capability.c intel64_cpu.c) -if(CONFIG_x86_64_UNWINDER_FRAME_POINTER) +if(CONFIG_X86_64_UNWINDER_FRAME_POINTER) list(APPEND SRCS intel64_backtrace_fp.c) endif() diff --git a/libs/libm/openlibm/CMakeLists.txt b/libs/libm/openlibm/CMakeLists.txt index 66ed8ab0d8..d5e34b35e4 100644 --- a/libs/libm/openlibm/CMakeLists.txt +++ b/libs/libm/openlibm/CMakeLists.txt @@ -143,7 +143,7 @@ if(CONFIG_LIBM_OPENLIBM) common.c e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c e_atan2.c e_atan2f.c e_atanh.c e_atanhf.c e_cosh.c e_coshf.c e_exp.c - e_exp10.c e_expf.c e_exp10f.c e_fmod.c e_fmodf.c + e_expf.c e_fmod.c e_fmodf.c e_hypot.c e_hypotf.c e_j0.c e_j0f.c e_j1.c e_j1f.c e_jn.c e_jnf.c e_lgamma.c e_lgamma_r.c e_lgammaf.c e_lgammaf_r.c e_log.c e_log10.c e_log10f.c e_log2.c e_log2f.c e_logf.c
