diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-30 11:34:17 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-30 11:39:40 +0200 |
commit | a6a4a8b2ef1fa747fdc79bc7bae0518417910f5d (patch) | |
tree | 06a4b136af18fd956feb4129ddd970e187749a0e | |
parent | 91a418c373ac8566c4c778dcb2aa7ecfc506ee56 (diff) | |
download | buildroot-a6a4a8b2ef1fa747fdc79bc7bae0518417910f5d.tar.gz buildroot-a6a4a8b2ef1fa747fdc79bc7bae0518417910f5d.zip |
toolchain-external: adjust musl dynamic linker symlink for mips-sf
The external toolchain code has some logic to calculate the correct name
for the dynamic linker symbolic link that needs to be created when the
musl C library is being used. There was already some handling for the
mipsel+soft-float case, but not for the mips+soft-float case. Due to
this, the symbolic link was incorrectly named, and programs were
referencing an non-existing file.
Reported-by: Florent Jacquet <florent.jacquet@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | toolchain/toolchain-external/pkg-toolchain-external.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolchain/toolchain-external/pkg-toolchain-external.mk b/toolchain/toolchain-external/pkg-toolchain-external.mk index 9670350dc0..856be65669 100644 --- a/toolchain/toolchain-external/pkg-toolchain-external.mk +++ b/toolchain/toolchain-external/pkg-toolchain-external.mk @@ -481,6 +481,8 @@ ifeq ($(BR2_i386),y) MUSL_ARCH = i386 else ifeq ($(BR2_ARM_EABIHF),y) MUSL_ARCH = armhf +else ifeq ($(BR2_mips):$(BR2_SOFT_FLOAT),y:y) +MUSL_ARCH = mips-sf else ifeq ($(BR2_mipsel):$(BR2_SOFT_FLOAT),y:y) MUSL_ARCH = mipsel-sf else ifeq ($(BR2_sh),y) |