This is an automated email from the ASF dual-hosted git repository. ligd pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push: new a05ab2ab49 libc: Remove dependence of LIBC_FLOATINGPOINT and LIBC_LONG_LONG from LIBC_NUMBERED_ARGS a05ab2ab49 is described below commit a05ab2ab4903ad65635e06443c974b750da9b38f Author: Xiang Xiao <xiaoxi...@xiaomi.com> AuthorDate: Sun Feb 19 23:08:39 2023 +0800 libc: Remove dependence of LIBC_FLOATINGPOINT and LIBC_LONG_LONG from LIBC_NUMBERED_ARGS since LIBC_NUMBERED_ARGS can work without both Signed-off-by: Xiang Xiao <xiaoxi...@xiaomi.com> --- libs/libc/stdio/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/libc/stdio/Kconfig b/libs/libc/stdio/Kconfig index 7a198e67ce..e3d43e7e39 100644 --- a/libs/libc/stdio/Kconfig +++ b/libs/libc/stdio/Kconfig @@ -77,7 +77,6 @@ config LIBC_LONG_LONG config LIBC_NUMBERED_ARGS bool "Enable numbered arguments in printf" default n - depends on LIBC_FLOATINGPOINT || LIBC_LONG_LONG ---help--- Enables support for numbered arguments in printf.