public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH/AARCH64] Handle ILP32 multi-arch
@ 2016-10-07 21:08 Andrew Pinski
  2016-10-21  8:24 ` Andrew Pinski
  2016-10-25 22:25 ` Matthias Klose
  0 siblings, 2 replies; 8+ messages in thread
From: Andrew Pinski @ 2016-10-07 21:08 UTC (permalink / raw)
  To: GCC Patches

[-- Attachment #1: Type: text/plain, Size: 390 bytes --]

Hi,
  This patch adds ilp32 multi-arch support.  This is needed to support
multi-arch on Debian like systems.

OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
Also tested with ilp32 with a newly built toolchain that supports
ILP32 with Ubuntu 1604 base.

Thanks,
Andrew

ChangeLog:
* config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
multi-arch for ilp32.

[-- Attachment #2: handleilp32_multiarch.diff.txt --]
[-- Type: text/plain, Size: 595 bytes --]

Index: gcc/config/aarch64/t-aarch64-linux
===================================================================
--- gcc/config/aarch64/t-aarch64-linux	(revision 240867)
+++ gcc/config/aarch64/t-aarch64-linux	(working copy)
@@ -25,4 +25,4 @@ AARCH_BE = $(if $(findstring TARGET_BIG_
 MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
 MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
 
-MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32
+MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)_ilp32-linux-gnu)

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2016-10-07 21:08 [PATCH/AARCH64] Handle ILP32 multi-arch Andrew Pinski
@ 2016-10-21  8:24 ` Andrew Pinski
  2016-10-25 17:35   ` Andrew Pinski
  2016-10-25 22:25 ` Matthias Klose
  1 sibling, 1 reply; 8+ messages in thread
From: Andrew Pinski @ 2016-10-21  8:24 UTC (permalink / raw)
  To: GCC Patches

On Fri, Oct 7, 2016 at 2:08 PM, Andrew Pinski <pinskia@gmail.com> wrote:
> Hi,
>   This patch adds ilp32 multi-arch support.  This is needed to support
> multi-arch on Debian like systems.
>
> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
> Also tested with ilp32 with a newly built toolchain that supports
> ILP32 with Ubuntu 1604 base.

Ping?

>
> Thanks,
> Andrew
>
> ChangeLog:
> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
> multi-arch for ilp32.

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2016-10-21  8:24 ` Andrew Pinski
@ 2016-10-25 17:35   ` Andrew Pinski
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Pinski @ 2016-10-25 17:35 UTC (permalink / raw)
  To: GCC Patches, Matthias Klose

On Fri, Oct 21, 2016 at 1:24 AM, Andrew Pinski <pinskia@gmail.com> wrote:
> On Fri, Oct 7, 2016 at 2:08 PM, Andrew Pinski <pinskia@gmail.com> wrote:
>> Hi,
>>   This patch adds ilp32 multi-arch support.  This is needed to support
>> multi-arch on Debian like systems.
>>
>> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
>> Also tested with ilp32 with a newly built toolchain that supports
>> ILP32 with Ubuntu 1604 base.
>
> Ping?
>
>>
>> Thanks,
>> Andrew
>>
>> ChangeLog:
>> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
>> multi-arch for ilp32.

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2016-10-07 21:08 [PATCH/AARCH64] Handle ILP32 multi-arch Andrew Pinski
  2016-10-21  8:24 ` Andrew Pinski
@ 2016-10-25 22:25 ` Matthias Klose
  2016-11-11  2:58   ` Andrew Pinski
  1 sibling, 1 reply; 8+ messages in thread
From: Matthias Klose @ 2016-10-25 22:25 UTC (permalink / raw)
  To: Andrew Pinski, GCC Patches; +Cc: Ramana Radhakrishnan

On 07.10.2016 23:08, Andrew Pinski wrote:
> Hi,
>   This patch adds ilp32 multi-arch support.  This is needed to support
> multi-arch on Debian like systems.
> 
> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
> Also tested with ilp32 with a newly built toolchain that supports
> ILP32 with Ubuntu 1604 base.
> 
> Thanks,
> Andrew
> 
> ChangeLog:
> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
> multi-arch for ilp32.

I can't approve that, but it looks like a reasonable change, but we should
document the multiarch triplet at https://wiki.debian.org/Multiarch/Tuples

Matthias

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2016-10-25 22:25 ` Matthias Klose
@ 2016-11-11  2:58   ` Andrew Pinski
  2016-12-10 21:24     ` Andrew Pinski
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Pinski @ 2016-11-11  2:58 UTC (permalink / raw)
  To: Matthias Klose; +Cc: GCC Patches, Ramana Radhakrishnan

On Tue, Oct 25, 2016 at 3:25 PM, Matthias Klose <doko@debian.org> wrote:
> On 07.10.2016 23:08, Andrew Pinski wrote:
>> Hi,
>>   This patch adds ilp32 multi-arch support.  This is needed to support
>> multi-arch on Debian like systems.
>>
>> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
>> Also tested with ilp32 with a newly built toolchain that supports
>> ILP32 with Ubuntu 1604 base.
>>
>> Thanks,
>> Andrew
>>
>> ChangeLog:
>> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
>> multi-arch for ilp32.
>
> I can't approve that, but it looks like a reasonable change, but we should
> document the multiarch triplet at https://wiki.debian.org/Multiarch/Tuples


Ping?

Thanks,
Andrew

>
> Matthias
>

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2016-11-11  2:58   ` Andrew Pinski
@ 2016-12-10 21:24     ` Andrew Pinski
  2017-01-03 21:04       ` Andrew Pinski
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Pinski @ 2016-12-10 21:24 UTC (permalink / raw)
  To: Matthias Klose; +Cc: GCC Patches, Ramana Radhakrishnan

On Thu, Nov 10, 2016 at 6:58 PM, Andrew Pinski <pinskia@gmail.com> wrote:
> On Tue, Oct 25, 2016 at 3:25 PM, Matthias Klose <doko@debian.org> wrote:
>> On 07.10.2016 23:08, Andrew Pinski wrote:
>>> Hi,
>>>   This patch adds ilp32 multi-arch support.  This is needed to support
>>> multi-arch on Debian like systems.
>>>
>>> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
>>> Also tested with ilp32 with a newly built toolchain that supports
>>> ILP32 with Ubuntu 1604 base.
>>>
>>> Thanks,
>>> Andrew
>>>
>>> ChangeLog:
>>> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
>>> multi-arch for ilp32.
>>
>> I can't approve that, but it looks like a reasonable change, but we should
>> document the multiarch triplet at https://wiki.debian.org/Multiarch/Tuples
>
>
> Ping?

Ping?  This is the only outstanding GCC ILP32 related patch.

>
> Thanks,
> Andrew
>
>>
>> Matthias
>>

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2016-12-10 21:24     ` Andrew Pinski
@ 2017-01-03 21:04       ` Andrew Pinski
  2017-02-07 23:21         ` Andrew Pinski
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Pinski @ 2017-01-03 21:04 UTC (permalink / raw)
  To: Matthias Klose
  Cc: GCC Patches, Ramana Radhakrishnan, Marcus Shawcroft, Richard Earnshaw

Ping?

On Sat, Dec 10, 2016 at 1:24 PM, Andrew Pinski <pinskia@gmail.com> wrote:
> On Thu, Nov 10, 2016 at 6:58 PM, Andrew Pinski <pinskia@gmail.com> wrote:
>> On Tue, Oct 25, 2016 at 3:25 PM, Matthias Klose <doko@debian.org> wrote:
>>> On 07.10.2016 23:08, Andrew Pinski wrote:
>>>> Hi,
>>>>   This patch adds ilp32 multi-arch support.  This is needed to support
>>>> multi-arch on Debian like systems.
>>>>
>>>> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
>>>> Also tested with ilp32 with a newly built toolchain that supports
>>>> ILP32 with Ubuntu 1604 base.
>>>>
>>>> Thanks,
>>>> Andrew
>>>>
>>>> ChangeLog:
>>>> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
>>>> multi-arch for ilp32.
>>>
>>> I can't approve that, but it looks like a reasonable change, but we should
>>> document the multiarch triplet at https://wiki.debian.org/Multiarch/Tuples
>>
>>
>> Ping?
>
> Ping?  This is the only outstanding GCC ILP32 related patch.
>
>>
>> Thanks,
>> Andrew
>>
>>>
>>> Matthias
>>>

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

* Re: [PATCH/AARCH64] Handle ILP32 multi-arch
  2017-01-03 21:04       ` Andrew Pinski
@ 2017-02-07 23:21         ` Andrew Pinski
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Pinski @ 2017-02-07 23:21 UTC (permalink / raw)
  To: Matthias Klose
  Cc: GCC Patches, Ramana Radhakrishnan, Marcus Shawcroft,
	Richard Earnshaw, James Greenhalgh

On Tue, Jan 3, 2017 at 1:04 PM, Andrew Pinski <pinskia@gmail.com> wrote:
> Ping?
>
> On Sat, Dec 10, 2016 at 1:24 PM, Andrew Pinski <pinskia@gmail.com> wrote:
>> On Thu, Nov 10, 2016 at 6:58 PM, Andrew Pinski <pinskia@gmail.com> wrote:
>>> On Tue, Oct 25, 2016 at 3:25 PM, Matthias Klose <doko@debian.org> wrote:
>>>> On 07.10.2016 23:08, Andrew Pinski wrote:
>>>>> Hi,
>>>>>   This patch adds ilp32 multi-arch support.  This is needed to support
>>>>> multi-arch on Debian like systems.
>>>>>
>>>>> OK?  Bootstrapped and tested on aarch64-linux-gnu with no regressions.
>>>>> Also tested with ilp32 with a newly built toolchain that supports
>>>>> ILP32 with Ubuntu 1604 base.
>>>>>
>>>>> Thanks,
>>>>> Andrew
>>>>>
>>>>> ChangeLog:
>>>>> * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES): Handle
>>>>> multi-arch for ilp32.
>>>>
>>>> I can't approve that, but it looks like a reasonable change, but we should
>>>> document the multiarch triplet at https://wiki.debian.org/Multiarch/Tuples
>>>
>>>
>>> Ping?
>>
>> Ping?  This is the only outstanding GCC ILP32 related patch.

Ping x4?

>>
>>>
>>> Thanks,
>>> Andrew
>>>
>>>>
>>>> Matthias
>>>>

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

end of thread, other threads:[~2017-02-07 23:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-07 21:08 [PATCH/AARCH64] Handle ILP32 multi-arch Andrew Pinski
2016-10-21  8:24 ` Andrew Pinski
2016-10-25 17:35   ` Andrew Pinski
2016-10-25 22:25 ` Matthias Klose
2016-11-11  2:58   ` Andrew Pinski
2016-12-10 21:24     ` Andrew Pinski
2017-01-03 21:04       ` Andrew Pinski
2017-02-07 23:21         ` Andrew Pinski

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).