diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-21 09:48:00 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-21 09:48:00 +0000 |
commit | 30481d01ce6ff06d4bff1a423b644303e4d8084f (patch) | |
tree | c0e3eb29cc7d32b7005728b85bdf7c2d4ca956df /config/toolchain.in | |
parent | 535c532baf0851b68e63f3671a8630223badf77c (diff) | |
download | crosstool-ng-30481d01ce6ff06d4bff1a423b644303e4d8084f.tar.gz crosstool-ng-30481d01ce6ff06d4bff1a423b644303e4d8084f.tar.bz2 crosstool-ng-30481d01ce6ff06d4bff1a423b644303e4d8084f.zip |
Move the threading model choice back to the C library menu:
- the threading models available are dependent on the C library used
- it is thus easier to first select the C libary, and then the threading model, rather going back to the toolchain menu.
/trunk/config/toolchain.in | 29 0 29 0 -----------------------------
/trunk/config/libc.in | 47 38 9 0 ++++++++++++++++++++++++++++++++++++++---------
2 files changed, 38 insertions(+), 38 deletions(-)
Diffstat (limited to 'config/toolchain.in')
-rw-r--r-- | config/toolchain.in | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/config/toolchain.in b/config/toolchain.in index dbfa2f12..e52d9b9d 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -22,35 +22,6 @@ config SHARED_LIBS You might not want shared librries if you're building for a target that don't support it (maybe some nommu targets, for example, or bare metal). -choice - bool - prompt "Threading implementation to use:" - default THREADS_NPTL if LIBC_SUPPORT_NPTL - default THREADS_LINUXTHREADS if LIBC_SUPPORT_LINUXTHREADS && ! LIBC_SUPPORT_NPTL - default THREADS_NONE if ! LIBC_SUPPORT_LINUXTHREADS && ! LIBC_SUPPORT_NPTL - -config THREADS_NPTL - bool - prompt "nptl" - depends on LIBC_SUPPORT_NPTL - -config THREADS_LINUXTHREADS - bool - prompt "linuxthreads" - depends on LIBC_SUPPORT_LINUXTHREADS - -config THREADS_NONE - bool - prompt "none" - -endchoice - -config THREADS - string - default "nptl" if THREADS_NPTL - default "linuxthreads" if THREADS_LINUXTHREADS - default "none" if THREADS_NONE - config TARGET_VENDOR string prompt "Vendor string" |