public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Update RTEMS multilib for SPARC
@ 2015-09-28 12:36 Daniel Hellstrom
  2015-09-28 13:02 ` Sebastian Huber
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Hellstrom @ 2015-09-28 12:36 UTC (permalink / raw)
  To: gcc-patches; +Cc: ebotcazou, sebastian.huber, rtems-devel, software

Now that muser-mode is default the multilib definitions does not require to
specify that switch any more. Add UT699 to multilib after recent patches. Add
AT697F multilib since there are many LEON2 users running RTEMS.

To gcc/ChangeLog:

gcc/
	* config/sparc/t-rtems: Remove -muser-mode, add ut699 and at697f
---
 gcc/config/sparc/t-rtems |   25 +++++++++++++++----------
 1 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/gcc/config/sparc/t-rtems b/gcc/config/sparc/t-rtems
index adb6dcb..6f7cc6f 100644
--- a/gcc/config/sparc/t-rtems
+++ b/gcc/config/sparc/t-rtems
@@ -17,15 +17,20 @@
 # <http://www.gnu.org/licenses/>.
 #
 
-MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7 muser-mode
-MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 user-mode
+MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7/mcpu=leon \
+		   mfix-ut699/mfix-at697f
+MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 leon ut699 at697f
 MULTILIB_MATCHES = msoft-float=mno-fpu
 
-MULTILIB_EXCEPTIONS = muser-mode
-MULTILIB_EXCEPTIONS += mcpu=leon3
-MULTILIB_EXCEPTIONS += mcpu=leon3v7
-MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3
-MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3v7
-MULTILIB_EXCEPTIONS += msoft-float/muser-mode
-MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/muser-mode
-MULTILIB_EXCEPTIONS += mcpu=v8/muser-mode
+MULTILIB_EXCEPTIONS = mfix-ut699
+MULTILIB_EXCEPTIONS += msoft-float/mfix-ut699
+MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-ut699
+MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-ut699
+MULTILIB_EXCEPTIONS += mcpu=v8/mfix-ut699
+MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-ut699
+MULTILIB_EXCEPTIONS += mfix-at697f
+MULTILIB_EXCEPTIONS += msoft-float/mfix-at697f
+MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-at697f
+MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-at697f
+MULTILIB_EXCEPTIONS += mcpu=v8/mfix-at697f
+MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-at697f
-- 
1.7.0.4

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 12:36 [PATCH] Update RTEMS multilib for SPARC Daniel Hellstrom
@ 2015-09-28 13:02 ` Sebastian Huber
  2015-09-28 13:45   ` Sebastian Huber
  0 siblings, 1 reply; 8+ messages in thread
From: Sebastian Huber @ 2015-09-28 13:02 UTC (permalink / raw)
  To: Daniel Hellstrom, gcc-patches; +Cc: ebotcazou, rtems-devel, software

On 28/09/15 14:13, Daniel Hellstrom wrote:
> Now that muser-mode is default the multilib definitions does not require to
> specify that switch any more. Add UT699 to multilib after recent patches. Add
> AT697F multilib since there are many LEON2 users running RTEMS.
>
> To gcc/ChangeLog:
>
> gcc/
> 	* config/sparc/t-rtems: Remove -muser-mode, add ut699 and at697f
> ---
>   gcc/config/sparc/t-rtems |   25 +++++++++++++++----------
>   1 files changed, 15 insertions(+), 10 deletions(-)
>
> diff --git a/gcc/config/sparc/t-rtems b/gcc/config/sparc/t-rtems
> index adb6dcb..6f7cc6f 100644
> --- a/gcc/config/sparc/t-rtems
> +++ b/gcc/config/sparc/t-rtems
> @@ -17,15 +17,20 @@
>   # <http://www.gnu.org/licenses/>.
>   #
>   
> -MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7 muser-mode
> -MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 user-mode
> +MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7/mcpu=leon \
> +		   mfix-ut699/mfix-at697f
> +MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 leon ut699 at697f
>   MULTILIB_MATCHES = msoft-float=mno-fpu
>   
> -MULTILIB_EXCEPTIONS = muser-mode
> -MULTILIB_EXCEPTIONS += mcpu=leon3
> -MULTILIB_EXCEPTIONS += mcpu=leon3v7
> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3
> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3v7
> -MULTILIB_EXCEPTIONS += msoft-float/muser-mode
> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/muser-mode
> -MULTILIB_EXCEPTIONS += mcpu=v8/muser-mode
> +MULTILIB_EXCEPTIONS = mfix-ut699
> +MULTILIB_EXCEPTIONS += msoft-float/mfix-ut699
> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-ut699
> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-ut699
> +MULTILIB_EXCEPTIONS += mcpu=v8/mfix-ut699
> +MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-ut699
> +MULTILIB_EXCEPTIONS += mfix-at697f
> +MULTILIB_EXCEPTIONS += msoft-float/mfix-at697f
> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-at697f
> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-at697f
> +MULTILIB_EXCEPTIONS += mcpu=v8/mfix-at697f
> +MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-at697f

Why do we need so many variants with fixes for the UT699 (32-bit 
Fault-Tolerant LEON3FT SPARC V8 Processor) and the AT697F (LEON2-FT)? 
Why do we have no leon3 variant without fixes for the UT699 and AT697F? 
Which multilib do you suggest now for the NGMP/GR740?

-- 
Sebastian Huber, embedded brains GmbH

Address : Dornierstr. 4, D-82178 Puchheim, Germany
Phone   : +49 89 189 47 41-16
Fax     : +49 89 189 47 41-09
E-Mail  : sebastian.huber@embedded-brains.de
PGP     : Public key available on request.

Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 13:02 ` Sebastian Huber
@ 2015-09-28 13:45   ` Sebastian Huber
  2015-09-28 13:49     ` Daniel Hellstrom
  0 siblings, 1 reply; 8+ messages in thread
From: Sebastian Huber @ 2015-09-28 13:45 UTC (permalink / raw)
  To: Daniel Hellstrom, gcc-patches; +Cc: ebotcazou, rtems-devel, software



On 28/09/15 14:33, Sebastian Huber wrote:
> On 28/09/15 14:13, Daniel Hellstrom wrote:
>> Now that muser-mode is default the multilib definitions does not 
>> require to
>> specify that switch any more. Add UT699 to multilib after recent 
>> patches. Add
>> AT697F multilib since there are many LEON2 users running RTEMS.
>>
>> To gcc/ChangeLog:
>>
>> gcc/
>>     * config/sparc/t-rtems: Remove -muser-mode, add ut699 and at697f
>> ---
>>   gcc/config/sparc/t-rtems |   25 +++++++++++++++----------
>>   1 files changed, 15 insertions(+), 10 deletions(-)
>>
>> diff --git a/gcc/config/sparc/t-rtems b/gcc/config/sparc/t-rtems
>> index adb6dcb..6f7cc6f 100644
>> --- a/gcc/config/sparc/t-rtems
>> +++ b/gcc/config/sparc/t-rtems
>> @@ -17,15 +17,20 @@
>>   # <http://www.gnu.org/licenses/>.
>>   #
>>   -MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7 
>> muser-mode
>> -MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 user-mode
>> +MULTILIB_OPTIONS = msoft-float 
>> mcpu=v8/mcpu=leon3/mcpu=leon3v7/mcpu=leon \
>> +           mfix-ut699/mfix-at697f
>> +MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 leon ut699 at697f
>>   MULTILIB_MATCHES = msoft-float=mno-fpu
>>   -MULTILIB_EXCEPTIONS = muser-mode
>> -MULTILIB_EXCEPTIONS += mcpu=leon3
>> -MULTILIB_EXCEPTIONS += mcpu=leon3v7
>> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3
>> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3v7
>> -MULTILIB_EXCEPTIONS += msoft-float/muser-mode
>> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/muser-mode
>> -MULTILIB_EXCEPTIONS += mcpu=v8/muser-mode
>> +MULTILIB_EXCEPTIONS = mfix-ut699
>> +MULTILIB_EXCEPTIONS += msoft-float/mfix-ut699
>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-ut699
>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-ut699
>> +MULTILIB_EXCEPTIONS += mcpu=v8/mfix-ut699
>> +MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-ut699
>> +MULTILIB_EXCEPTIONS += mfix-at697f
>> +MULTILIB_EXCEPTIONS += msoft-float/mfix-at697f
>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-at697f
>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-at697f
>> +MULTILIB_EXCEPTIONS += mcpu=v8/mfix-at697f
>> +MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-at697f
>
> Why do we need so many variants with fixes for the UT699 (32-bit 
> Fault-Tolerant LEON3FT SPARC V8 Processor) and the AT697F (LEON2-FT)? 
> Why do we have no leon3 variant without fixes for the UT699 and 
> AT697F? Which multilib do you suggest now for the NGMP/GR740?
>

Sorry, for these stupid questions. Maybe we should change this file to 
use MULTILIB_REQUIRED, like on rs6000 and arm.

Which multilibs do we have after this change?

-- 
Sebastian Huber, embedded brains GmbH

Address : Dornierstr. 4, D-82178 Puchheim, Germany
Phone   : +49 89 189 47 41-16
Fax     : +49 89 189 47 41-09
E-Mail  : sebastian.huber@embedded-brains.de
PGP     : Public key available on request.

Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 13:45   ` Sebastian Huber
@ 2015-09-28 13:49     ` Daniel Hellstrom
  2015-09-28 14:03       ` Sebastian Huber
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Hellstrom @ 2015-09-28 13:49 UTC (permalink / raw)
  To: Sebastian Huber; +Cc: gcc-patches, ebotcazou, rtems-devel, software

On 09/28/2015 02:36 PM, Sebastian Huber wrote:
>
>
> On 28/09/15 14:33, Sebastian Huber wrote:
>> On 28/09/15 14:13, Daniel Hellstrom wrote:
>>> Now that muser-mode is default the multilib definitions does not require to
>>> specify that switch any more. Add UT699 to multilib after recent patches. Add
>>> AT697F multilib since there are many LEON2 users running RTEMS.
>>>
>>> To gcc/ChangeLog:
>>>
>>> gcc/
>>>     * config/sparc/t-rtems: Remove -muser-mode, add ut699 and at697f
>>> ---
>>>   gcc/config/sparc/t-rtems |   25 +++++++++++++++----------
>>>   1 files changed, 15 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/gcc/config/sparc/t-rtems b/gcc/config/sparc/t-rtems
>>> index adb6dcb..6f7cc6f 100644
>>> --- a/gcc/config/sparc/t-rtems
>>> +++ b/gcc/config/sparc/t-rtems
>>> @@ -17,15 +17,20 @@
>>>   # <http://www.gnu.org/licenses/>.
>>>   #
>>>   -MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7 muser-mode
>>> -MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 user-mode
>>> +MULTILIB_OPTIONS = msoft-float mcpu=v8/mcpu=leon3/mcpu=leon3v7/mcpu=leon \
>>> +           mfix-ut699/mfix-at697f
>>> +MULTILIB_DIRNAMES = soft v8 leon3 leon3v7 leon ut699 at697f
>>>   MULTILIB_MATCHES = msoft-float=mno-fpu
>>>   -MULTILIB_EXCEPTIONS = muser-mode
>>> -MULTILIB_EXCEPTIONS += mcpu=leon3
>>> -MULTILIB_EXCEPTIONS += mcpu=leon3v7
>>> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3
>>> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3v7
>>> -MULTILIB_EXCEPTIONS += msoft-float/muser-mode
>>> -MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/muser-mode
>>> -MULTILIB_EXCEPTIONS += mcpu=v8/muser-mode
>>> +MULTILIB_EXCEPTIONS = mfix-ut699
>>> +MULTILIB_EXCEPTIONS += msoft-float/mfix-ut699
>>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-ut699
>>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-ut699
>>> +MULTILIB_EXCEPTIONS += mcpu=v8/mfix-ut699
>>> +MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-ut699
>>> +MULTILIB_EXCEPTIONS += mfix-at697f
>>> +MULTILIB_EXCEPTIONS += msoft-float/mfix-at697f
>>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=v8/mfix-at697f
>>> +MULTILIB_EXCEPTIONS += msoft-float/mcpu=leon3*/mfix-at697f
>>> +MULTILIB_EXCEPTIONS += mcpu=v8/mfix-at697f
>>> +MULTILIB_EXCEPTIONS += mcpu=leon3*/mfix-at697f
>>
>> Why do we need so many variants with fixes for the UT699 (32-bit Fault-Tolerant LEON3FT SPARC V8 Processor) and the AT697F (LEON2-FT)? Why do we have no leon3 variant without fixes for the UT699 
>> and AT697F? Which multilib do you suggest now for the NGMP/GR740?
>>
NGMP/GR740 is still the same ("mcpu=leon3" or "mcpu=leon3 msoft-float") but the muser-mode is not longer needed since it is default. This will be easier than having to deal with muser-mode all the 
time and if that is forgotten during link the v7 multilib will be selected wrongly.

Two variants for UT699 (hard-float and soft-float) and for AT697F (hard-float and soft-float). We could remove AT697 soft-float since the mfix-at697f only fixes float instructions at the moment but I 
though it would be easier and MULTILIB_REUSE didn't work I'm guessing since there is a = sign in the target switch.

>
> Sorry, for these stupid questions. Maybe we should change this file to use MULTILIB_REQUIRED, like on rs6000 and arm.
>
> Which multilibs do we have after this change?

.;
soft;@msoft-float
v8;@mcpu=v8
leon3;@mcpu=leon3
leon3v7;@mcpu=leon3v7
leon;@mcpu=leon
leon/ut699;@mcpu=leon@mfix-ut699
leon/at697f;@mcpu=leon@mfix-at697f
soft/v8;@msoft-float@mcpu=v8
soft/leon3;@msoft-float@mcpu=leon3
soft/leon3v7;@msoft-float@mcpu=leon3v7
soft/leon;@msoft-float@mcpu=leon
soft/leon/ut699;@msoft-float@mcpu=leon@mfix-ut699
soft/leon/at697f;@msoft-float@mcpu=leon@mfix-at697f


Regards,
Daniel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 13:49     ` Daniel Hellstrom
@ 2015-09-28 14:03       ` Sebastian Huber
  2015-09-28 14:24         ` Daniel Hellstrom
  0 siblings, 1 reply; 8+ messages in thread
From: Sebastian Huber @ 2015-09-28 14:03 UTC (permalink / raw)
  To: Daniel Hellstrom; +Cc: gcc-patches, ebotcazou, rtems-devel, software



On 28/09/15 15:20, Daniel Hellstrom wrote:
>> Which multilibs do we have after this change?
>
> .;
> soft;@msoft-float
> v8;@mcpu=v8
> leon3;@mcpu=leon3
> leon3v7;@mcpu=leon3v7
> leon;@mcpu=leon
> leon/ut699;@mcpu=leon@mfix-ut699
> leon/at697f;@mcpu=leon@mfix-at697f
> soft/v8;@msoft-float@mcpu=v8
> soft/leon3;@msoft-float@mcpu=leon3
> soft/leon3v7;@msoft-float@mcpu=leon3v7
> soft/leon;@msoft-float@mcpu=leon
> soft/leon/ut699;@msoft-float@mcpu=leon@mfix-ut699
> soft/leon/at697f;@msoft-float@mcpu=leon@mfix-at697f 

Ok, looks good. The change log entry should mention that you add 
-mcpu=leon multilibs as well.

It would be nice if you can update the RTEMS documentation accordingly 
similar to ARM and PowerPC, e.g.

https://docs.rtems.org/doc-current/share/rtems/html/cpu_supplement/ARM-Specific-Information-Multilibs.html#ARM-Specific-Information-Multilibs

-- 
Sebastian Huber, embedded brains GmbH

Address : Dornierstr. 4, D-82178 Puchheim, Germany
Phone   : +49 89 189 47 41-16
Fax     : +49 89 189 47 41-09
E-Mail  : sebastian.huber@embedded-brains.de
PGP     : Public key available on request.

Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 14:03       ` Sebastian Huber
@ 2015-09-28 14:24         ` Daniel Hellstrom
  2015-09-28 14:43           ` Sebastian Huber
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Hellstrom @ 2015-09-28 14:24 UTC (permalink / raw)
  To: Sebastian Huber; +Cc: gcc-patches, ebotcazou, rtems-devel, software

On 09/28/2015 03:37 PM, Sebastian Huber wrote:
>
>
> On 28/09/15 15:20, Daniel Hellstrom wrote:
>>> Which multilibs do we have after this change?
>>
>> .;
>> soft;@msoft-float
>> v8;@mcpu=v8
>> leon3;@mcpu=leon3
>> leon3v7;@mcpu=leon3v7
>> leon;@mcpu=leon
>> leon/ut699;@mcpu=leon@mfix-ut699
>> leon/at697f;@mcpu=leon@mfix-at697f
>> soft/v8;@msoft-float@mcpu=v8
>> soft/leon3;@msoft-float@mcpu=leon3
>> soft/leon3v7;@msoft-float@mcpu=leon3v7
>> soft/leon;@msoft-float@mcpu=leon
>> soft/leon/ut699;@msoft-float@mcpu=leon@mfix-ut699
>> soft/leon/at697f;@msoft-float@mcpu=leon@mfix-at697f 
>
> Ok, looks good. The change log entry should mention that you add -mcpu=leon multilibs as well.

Ooh I forgot to mention that, I will add it to the comment. Otherwise is this okay to commit for 4.9, 5 and master now?

>
> It would be nice if you can update the RTEMS documentation accordingly similar to ARM and PowerPC, e.g.
>
> https://docs.rtems.org/doc-current/share/rtems/html/cpu_supplement/ARM-Specific-Information-Multilibs.html#ARM-Specific-Information-Multilibs

I agree. I was just thinking were to document this, thanks!

Daniel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 14:24         ` Daniel Hellstrom
@ 2015-09-28 14:43           ` Sebastian Huber
  2015-09-28 15:41             ` Daniel Hellstrom
  0 siblings, 1 reply; 8+ messages in thread
From: Sebastian Huber @ 2015-09-28 14:43 UTC (permalink / raw)
  To: Daniel Hellstrom; +Cc: gcc-patches, ebotcazou, rtems-devel, software



On 28/09/15 15:39, Daniel Hellstrom wrote:
> On 09/28/2015 03:37 PM, Sebastian Huber wrote:
>>
>>
>> On 28/09/15 15:20, Daniel Hellstrom wrote:
>>>> Which multilibs do we have after this change?
>>>
>>> .;
>>> soft;@msoft-float
>>> v8;@mcpu=v8
>>> leon3;@mcpu=leon3
>>> leon3v7;@mcpu=leon3v7
>>> leon;@mcpu=leon
>>> leon/ut699;@mcpu=leon@mfix-ut699
>>> leon/at697f;@mcpu=leon@mfix-at697f
>>> soft/v8;@msoft-float@mcpu=v8
>>> soft/leon3;@msoft-float@mcpu=leon3
>>> soft/leon3v7;@msoft-float@mcpu=leon3v7
>>> soft/leon;@msoft-float@mcpu=leon
>>> soft/leon/ut699;@msoft-float@mcpu=leon@mfix-ut699
>>> soft/leon/at697f;@msoft-float@mcpu=leon@mfix-at697f 
>>
>> Ok, looks good. The change log entry should mention that you add 
>> -mcpu=leon multilibs as well.
>
> Ooh I forgot to mention that, I will add it to the comment. Otherwise 
> is this okay to commit for 4.9, 5 and master now? 

Since this is a RTEMS only change, I think this is all right. Just make 
sure the change log entry format is all right. The statements end all 
with a '.' for example.

-- 
Sebastian Huber, embedded brains GmbH

Address : Dornierstr. 4, D-82178 Puchheim, Germany
Phone   : +49 89 189 47 41-16
Fax     : +49 89 189 47 41-09
E-Mail  : sebastian.huber@embedded-brains.de
PGP     : Public key available on request.

Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Update RTEMS multilib for SPARC
  2015-09-28 14:43           ` Sebastian Huber
@ 2015-09-28 15:41             ` Daniel Hellstrom
  0 siblings, 0 replies; 8+ messages in thread
From: Daniel Hellstrom @ 2015-09-28 15:41 UTC (permalink / raw)
  To: Sebastian Huber; +Cc: gcc-patches, ebotcazou, rtems-devel, software

On 09/28/2015 03:49 PM, Sebastian Huber wrote:
>
>
> On 28/09/15 15:39, Daniel Hellstrom wrote:
>> On 09/28/2015 03:37 PM, Sebastian Huber wrote:
>>>
>>>
>>> On 28/09/15 15:20, Daniel Hellstrom wrote:
>>>>> Which multilibs do we have after this change?
>>>>
>>>> .;
>>>> soft;@msoft-float
>>>> v8;@mcpu=v8
>>>> leon3;@mcpu=leon3
>>>> leon3v7;@mcpu=leon3v7
>>>> leon;@mcpu=leon
>>>> leon/ut699;@mcpu=leon@mfix-ut699
>>>> leon/at697f;@mcpu=leon@mfix-at697f
>>>> soft/v8;@msoft-float@mcpu=v8
>>>> soft/leon3;@msoft-float@mcpu=leon3
>>>> soft/leon3v7;@msoft-float@mcpu=leon3v7
>>>> soft/leon;@msoft-float@mcpu=leon
>>>> soft/leon/ut699;@msoft-float@mcpu=leon@mfix-ut699
>>>> soft/leon/at697f;@msoft-float@mcpu=leon@mfix-at697f 
>>>
>>> Ok, looks good. The change log entry should mention that you add -mcpu=leon multilibs as well.
>>
>> Ooh I forgot to mention that, I will add it to the comment. Otherwise is this okay to commit for 4.9, 5 and master now? 
>
> Since this is a RTEMS only change, I think this is all right. Just make sure the change log entry format is all right. The statements end all with a '.' for example.

Thanks for the review, updated the comments and committed it.

Daniel

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-09-28 15:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-28 12:36 [PATCH] Update RTEMS multilib for SPARC Daniel Hellstrom
2015-09-28 13:02 ` Sebastian Huber
2015-09-28 13:45   ` Sebastian Huber
2015-09-28 13:49     ` Daniel Hellstrom
2015-09-28 14:03       ` Sebastian Huber
2015-09-28 14:24         ` Daniel Hellstrom
2015-09-28 14:43           ` Sebastian Huber
2015-09-28 15:41             ` Daniel Hellstrom

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).