This is an automated email from the ASF dual-hosted git repository.

jiuzhudong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 122a4a6f4 apps/examples/popen: Modify kconfig file
122a4a6f4 is described below

commit 122a4a6f4ea4d4912f8c2041e837fb238beae7ae
Author: yukangzhi <[email protected]>
AuthorDate: Mon Mar 17 14:07:13 2025 +0800

    apps/examples/popen: Modify kconfig file
    
    This test depends on !DISABLE_POSIX_TIMERS.
    
    arm-none-eabi/bin/ld:
    apps/examples/popen/libapps_popen.a(popen_main.c.obj):
    in function `popen_main':
    apps/examples/popen/popen_main.c:62:(.text.popen_main+0x1c):
    undefined reference to `timer_create'
    
    Signed-off-by: yukangzhi <[email protected]>
---
 examples/popen/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/examples/popen/Kconfig b/examples/popen/Kconfig
index 3b2eba29e..2f571d121 100644
--- a/examples/popen/Kconfig
+++ b/examples/popen/Kconfig
@@ -7,6 +7,7 @@ config EXAMPLES_POPEN
        tristate "popen() example"
        default n
        depends on SYSTEM_POPEN
+       depends on !DISABLE_POSIX_TIMERS
        ---help---
                Enable the popen() example
 

Reply via email to