diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-15 18:49:28 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-15 23:57:31 -0700 |
commit | 1ca65187f72b963f9558d6505e78b5117b677ece (patch) | |
tree | 1114e6becf12346120a1906b868bbdee88b5a5f2 /samples/arm-multilib-linux-uclibcgnueabi | |
parent | 061765ced66642c0a98b9e4a76e18dc630ad3199 (diff) | |
download | crosstool-ng-1ca65187f72b963f9558d6505e78b5117b677ece.tar.gz crosstool-ng-1ca65187f72b963f9558d6505e78b5117b677ece.tar.bz2 crosstool-ng-1ca65187f72b963f9558d6505e78b5117b677ece.zip |
Make arm-multilib-linux-uclibcgnueabi static
GCC does not distinguish the resulting binary by the CFLAGS (e.g. based
on which -march= was given). This means, while it will use the right
libraries for linking, at runtime they are all going to request the same
ld.so path and load the libraries from the same default path.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'samples/arm-multilib-linux-uclibcgnueabi')
-rw-r--r-- | samples/arm-multilib-linux-uclibcgnueabi/crosstool.config | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/samples/arm-multilib-linux-uclibcgnueabi/crosstool.config b/samples/arm-multilib-linux-uclibcgnueabi/crosstool.config index e01942dc..00ac47be 100644 --- a/samples/arm-multilib-linux-uclibcgnueabi/crosstool.config +++ b/samples/arm-multilib-linux-uclibcgnueabi/crosstool.config @@ -1,8 +1,9 @@ -CT_ARCH_FLOAT_SW=y CT_ARCH_arm=y CT_MULTILIB=y +CT_ARCH_FLOAT_SW=y CT_TARGET_VENDOR="multilib" CT_KERNEL_linux=y +# CT_SHARED_LIBS is not set CT_BINUTILS_LINKER_LD_GOLD=y CT_BINUTILS_GOLD_THREADS=y CT_BINUTILS_LD_WRAPPER=y |