diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-13 21:25:04 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-16 23:31:56 +0200 |
commit | 6630ac965279ed2a76394fbad8fd861f275ed24c (patch) | |
tree | 894fe2619525fca05a6df12838f0bcf421ab0f5d | |
parent | a3e5bfd20712f71790ea9bae9e9be250f07e8c21 (diff) |
linuxthreads: allow to choose on all supported architectures
To analyze or debug any linuxthreads problems it is useful to
have the ability to have a full gdb on the target available.
At the moment you could only debug stuff on microblaze.
Now we can verify that linuxthreads are working fine for
every supported architecture.
-rw-r--r-- | extra/Configs/Config.in | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index c8a7497c9..b25946461 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -500,16 +500,7 @@ config UCLIBC_HAS_LINUXTHREADS bool "Linuxthreads" # linuxthreads need nanosleep() select UCLIBC_HAS_REALTIME - depends on !TARGET_arc && \ - !TARGET_arm && \ - !TARGET_i386 && \ - !TARGET_metag && \ - !TARGET_mips && \ - !TARGET_powerpc && \ - !TARGET_sparc && \ - !TARGET_x86_64 && \ - !TARGET_xtensa || \ - !ARCH_USE_MMU + depends on !TARGET_metag help If you want to compile uClibc with Linuxthreads support, then answer Y. |