mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-04 19:07:16 +08:00

The `Setup.local` and the `config.site` files are used by Python's build system to, respectively, enable or disable Python's modules and set/unset available functions in the target system. These files are now set according to NuttX's configs, enabling or disabling Python's features according to the configs set on NuttX.
24 lines
794 B
Plaintext
24 lines
794 B
Plaintext
export MODULE_BUILDTYPE="static"
|
|
export ac_cv_file__dev_ptmx="no"
|
|
export ac_cv_file__dev_ptc="no"
|
|
export ac_cv_buggy_getaddrinfo="no"
|
|
export ac_cv_func_getaddrinfo="yes"
|
|
export ac_cv_pthread_is_default="yes"
|
|
export ac_cv_func_acosh="yes"
|
|
export ac_cv_func_asinh="yes"
|
|
export ac_cv_func_atanh="yes"
|
|
export ac_cv_func_erf="yes"
|
|
export ac_cv_func_erfc="yes"
|
|
export ac_cv_func_expm1="yes"
|
|
export ac_cv_func_log1p="yes"
|
|
export ac_cv_func_log2="yes"
|
|
export ac_cv_func_clock_gettime="yes"
|
|
export ac_cv_header_sys_syscall_h="no"
|
|
export ac_cv_func_timegm="yes"
|
|
export ac_cv_func_clock="yes"
|
|
export ac_cv_func_waitpid="yes"
|
|
export ac_cv_func_pipe="yes"
|
|
export ac_cv_enable_strict_prototypes_warning="no"
|
|
export ac_cv_func_getnameinfo="yes"
|
|
export ac_cv_func_poll="yes"
|
|
export ac_cv_func_gethostname="yes" |