diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-27 23:47:15 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-27 23:54:41 +0000 |
commit | 26578a15abfca9149f296c33b754fa195e0ccf9b (patch) | |
tree | c91058ebd0ebbce8ee30255c9276f351eb76d862 /eclass/tests/multilib.sh | |
parent | eclass/tests: add basic tests for multilib_env() expansion (diff) | |
download | gentoo-26578a15abfca9149f296c33b754fa195e0ccf9b.tar.gz gentoo-26578a15abfca9149f296c33b754fa195e0ccf9b.tar.bz2 gentoo-26578a15abfca9149f296c33b754fa195e0ccf9b.zip |
multilib.eclass: multilib_env(): set LIBDIR=lib for *-musl*
In contrast to glibc musl profiles use 'lib' layour for 32-bit
and 64-bit targets. multilib_env() did not take it into account
and assumed glibc's lib64 layout.
That breaks crossdev as it uses multilib_env to extract target
definition. Native builds are unaffected by this change.
Bug: https://bugs.gentoo.org/675954
Bug: https://gcc.gnu.org/PR90077
Bug: https://github.com/gentoo/musl/issues/245
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass/tests/multilib.sh')
-rwxr-xr-x | eclass/tests/multilib.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eclass/tests/multilib.sh b/eclass/tests/multilib.sh index 308c456b98de..68c0dd6e1423 100755 --- a/eclass/tests/multilib.sh +++ b/eclass/tests/multilib.sh @@ -57,5 +57,9 @@ test-multilib_env \ "x86_64-pc-linux-gnux32" \ "x32:x32 amd64 x86" \ "x32? ( CHOST=x86_64-pc-linux-gnux32 LIBDIR=libx32 CFLAGS=-mx32 LDFLAGS= ) amd64? ( CHOST=x86_64-pc-linux-gnu LIBDIR=lib64 CFLAGS=-m64 LDFLAGS= ) x86? ( CHOST=i686-pc-linux-gnu LIBDIR=lib CFLAGS=-m32 LDFLAGS= )" +test-multilib_env \ + "x86_64-gentoo-linux-musl" \ + "default:default" \ + "default? ( CHOST=x86_64-gentoo-linux-musl LIBDIR=lib CFLAGS= LDFLAGS= )" texit |