diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-02 13:52:16 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-02 13:52:16 +0100 |
commit | 8a952d18e0f650829b60be72f051cadf0fc9e247 (patch) | |
tree | 924e015624c6b9cecda053d405e2d5cd19891da0 /config/binutils | |
parent | e4d610f9058678d75f0f5060c925ece374488e3c (diff) | |
download | crosstool-ng-8a952d18e0f650829b60be72f051cadf0fc9e247.tar.gz crosstool-ng-8a952d18e0f650829b60be72f051cadf0fc9e247.tar.bz2 crosstool-ng-8a952d18e0f650829b60be72f051cadf0fc9e247.zip |
binutils/binutils: add support for threaded gold
When configured with support for threads, gold can link in
parallel, possibly cooperating with a make jobserver.
Add an option enabling threads.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'config/binutils')
-rw-r--r-- | config/binutils/binutils.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/binutils/binutils.in b/config/binutils/binutils.in index 94190f4e..2ccba5c5 100644 --- a/config/binutils/binutils.in +++ b/config/binutils/binutils.in @@ -123,6 +123,14 @@ endchoice # Enable linkers config BINUTILS_GOLD_INSTALLED bool +config BINUTILS_GOLD_THREADS + bool + prompt "| Enable threaded gold" + depends on BINUTILS_GOLD_INSTALLED + help + When configured with threads, gold can link in parallel, + possibly cooperating with a make jobserver. + config BINUTILS_LINKERS_LIST string default "ld" if BINUTILS_LINKER_LD |