diff options
author | Dmitry Chestnykh <dm.chestnykh@gmail.com> | 2024-02-26 13:21:26 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-26 11:28:42 +0100 |
commit | 73017bba9d3bc0f8ada159319ff590117c9e5689 (patch) | |
tree | 05f6d950a0ef0702f9513085cd9d66cef7d7a1bb /extra/Configs | |
parent | fb800e73a9c81a299f55de7a3aba4a0c3ab074e0 (diff) |
Add time64 support for MIPS32.
Signed-off-by: Dmitry Chestnykh <dm.chestnykh@gmail.com>
Diffstat (limited to 'extra/Configs')
-rw-r--r-- | extra/Configs/Config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index f11a63b79..c7c502040 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -1026,7 +1026,10 @@ config UCLIBC_FALLBACK_TO_ETC_LOCALTIME config UCLIBC_USE_TIME64 bool "Use *time64 syscalls instead of 32bit ones (if possible)" - depends on TARGET_arm || TARGET_powerpc || TARGET_xtensa + depends on TARGET_arm || \ + (TARGET_mips && !CONFIG_MIPS_N64_ABI) || \ + TARGET_powerpc || \ + TARGET_xtensa # TODO: add support for other architectures default n |