diff mbox

[6/13] mips musl support

Message ID 554CD28E.3080802@arm.com
State New
Headers show

Commit Message

Szabolcs Nagy May 8, 2015, 3:13 p.m. UTC
On 08/05/15 15:46, Matthew Fortune wrote:
> Szabolcs Nagy <szabolcs.nagy@arm.com> writes:
>> if you think that's ok, i can now submit the patch with %{msoft-float:-
>> sf} added to all abi variants.
> 
> That's fine. Go ahead.
> 

the patch for the record.

Changelog:

2015-05-08  Gregor Richards  <gregor.richards@uwaterloo.ca>
	    Szabolcs Nagy  <szabolcs.nagy@arm.com>

	* config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Define.
	(MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Define.
	(GNU_USER_DYNAMIC_LINKERN32): Update.

Comments

Kyrylo Tkachov May 8, 2015, 3:17 p.m. UTC | #1
On 08/05/15 16:13, Szabolcs Nagy wrote:
> On 08/05/15 15:46, Matthew Fortune wrote:
>> Szabolcs Nagy <szabolcs.nagy@arm.com> writes:
>>> if you think that's ok, i can now submit the patch with %{msoft-float:-
>>> sf} added to all abi variants.
>> That's fine. Go ahead.
>>
> the patch for the record.

I've committed this on Szabolcs' behalf with r222915.

Kyrill
>
> Changelog:
>
> 2015-05-08  Gregor Richards  <gregor.richards@uwaterloo.ca>
> 	    Szabolcs Nagy  <szabolcs.nagy@arm.com>
>
> 	* config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Define.
> 	(MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Define.
> 	(GNU_USER_DYNAMIC_LINKERN32): Update.
diff mbox

Patch

diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
index 91df261..fb358e2 100644
--- a/gcc/config/mips/linux.h
+++ b/gcc/config/mips/linux.h
@@ -37,7 +37,13 @@  along with GCC; see the file COPYING3.  If not see
 #define UCLIBC_DYNAMIC_LINKERN32 \
   "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
 
+#undef MUSL_DYNAMIC_LINKER32
+#define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-mips%{EL:el}%{msoft-float:-sf}.so.1"
+#undef MUSL_DYNAMIC_LINKER64
+#define MUSL_DYNAMIC_LINKER64 "/lib/ld-musl-mips64%{EL:el}%{msoft-float:-sf}.so.1"
+#define MUSL_DYNAMIC_LINKERN32 "/lib/ld-musl-mipsn32%{EL:el}%{msoft-float:-sf}.so.1"
+
 #define BIONIC_DYNAMIC_LINKERN32 "/system/bin/linker32"
 #define GNU_USER_DYNAMIC_LINKERN32 \
   CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKERN32, UCLIBC_DYNAMIC_LINKERN32, \
-                         BIONIC_DYNAMIC_LINKERN32)
+                         BIONIC_DYNAMIC_LINKERN32, MUSL_DYNAMIC_LINKERN32)