diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-03-05 17:03:10 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-07-29 13:12:59 +1200 |
commit | b6a4766d2237f9fcb9a043ef5a2d74a25c69d07b (patch) | |
tree | 71333099bdabe6f4b4446a81ce443bec4d026629 /scripts | |
parent | 5d2b316093a3bd348d7902382179d68270a38c3b (diff) | |
download | crosstool-ng-b6a4766d2237f9fcb9a043ef5a2d74a25c69d07b.tar.gz crosstool-ng-b6a4766d2237f9fcb9a043ef5a2d74a25c69d07b.tar.bz2 crosstool-ng-b6a4766d2237f9fcb9a043ef5a2d74a25c69d07b.zip |
binutils: Allow gold to be statically linked
gold uses g++ to link which doesn't recognise -all-static. It appears as
if -static should work for both libtool and g++ but for some reason it
doesn't. Remove the restriction that gold can't be included in a static
toolchain. When a static toolchain is requested pass
--with-gold-ldflags=--static to configure. Finally build gold separately
so it does not get the extra_make_flags which may contain -all-static.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/binutils/binutils.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/build/binutils/binutils.sh b/scripts/build/binutils/binutils.sh index 4dc33221..6ae2f7cb 100644 --- a/scripts/build/binutils/binutils.sh +++ b/scripts/build/binutils/binutils.sh @@ -182,6 +182,16 @@ do_binutils_backend() { extra_config+=("--without-zstd") fi + # gold links with CXXLINK/g++, not libtool, and does not understand + # -all-static + if [ "${static_build}" = "y" ]; then + case "${CT_BINUTILS_LINKERS_LIST}" in + *gold*) + extra_config+=("--with-gold-ldflags=--static") + ;; + esac + fi + CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'" CT_DoExecLog CFG \ @@ -211,6 +221,13 @@ do_binutils_backend() { fi CT_DoLog EXTRA "Building binutils" + if [ "${static_build}" = "y" ]; then + case "${CT_BINUTILS_LINKERS_LIST}" in + *gold*) + CT_DoExecLog ALL make -C gold ${CT_JOBSFLAGS} + ;; + esac + fi CT_DoExecLog ALL make "${extra_make_flags[@]}" ${CT_JOBSFLAGS} CT_DoLog EXTRA "Installing binutils" |