Linux s390 Architecture development
 help / color / mirror / Atom feed
* [RFC patch 7/9] S390 remove -traditional
       [not found] <20080422172404.502954084@polymtl.ca>
@ 2008-04-22 17:24 ` Mathieu Desnoyers
  2008-04-23  7:28   ` Heiko Carstens
  0 siblings, 1 reply; 2+ messages in thread
From: Mathieu Desnoyers @ 2008-04-22 17:24 UTC (permalink / raw)
  To: Sam Ravnborg, akpm, Ingo Molnar, linux-kernel
  Cc: Mathieu Desnoyers, schwidefsky, heiko.carstens, linux390,
	linux-s390

[-- Attachment #1: s390-remove-traditional.patch --]
[-- Type: text/plain, Size: 2204 bytes --]

Subject: [RFC patch 7/9] Re: [PATCH] Stringify support commas
 > This is a no-no for those archs that still use -traditional.
 > > I dunno if this is a problem for you at the moment and the
 > > right fix is anyway to nuke -traditional.
 > > 
 > >     Sam

(cross-compile test ok)

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
CC: Sam Ravnborg <sam@ravnborg.org>
CC: schwidefsky@de.ibm.com
CC: heiko.carstens@de.ibm.com
CC: linux390@de.ibm.com
CC: linux-s390@vger.kernel.org
---
 arch/s390/kernel/Makefile   |    2 --
 arch/s390/lib/Makefile      |    2 --
 arch/s390/math-emu/Makefile |    1 -
 3 files changed, 5 deletions(-)

Index: linux-2.6-lttng/arch/s390/kernel/Makefile
===================================================================
--- linux-2.6-lttng.orig/arch/s390/kernel/Makefile	2008-04-21 10:04:43.000000000 -0400
+++ linux-2.6-lttng/arch/s390/kernel/Makefile	2008-04-21 10:04:47.000000000 -0400
@@ -2,8 +2,6 @@
 # Makefile for the linux kernel.
 #
 
-EXTRA_AFLAGS	:= -traditional
-
 #
 # Passing null pointers is ok for smp code, since we access the lowcore here.
 #
Index: linux-2.6-lttng/arch/s390/lib/Makefile
===================================================================
--- linux-2.6-lttng.orig/arch/s390/lib/Makefile	2008-04-21 10:04:55.000000000 -0400
+++ linux-2.6-lttng/arch/s390/lib/Makefile	2008-04-21 10:05:00.000000000 -0400
@@ -2,8 +2,6 @@
 # Makefile for s390-specific library files..
 #
 
-EXTRA_AFLAGS := -traditional
-
 lib-y += delay.o string.o uaccess_std.o uaccess_pt.o
 obj-$(CONFIG_32BIT) += div64.o qrnnd.o
 lib-$(CONFIG_64BIT) += uaccess_mvcos.o
Index: linux-2.6-lttng/arch/s390/math-emu/Makefile
===================================================================
--- linux-2.6-lttng.orig/arch/s390/math-emu/Makefile	2008-04-21 10:05:04.000000000 -0400
+++ linux-2.6-lttng/arch/s390/math-emu/Makefile	2008-04-21 10:05:08.000000000 -0400
@@ -5,4 +5,3 @@
 obj-$(CONFIG_MATHEMU) := math.o
 
 EXTRA_CFLAGS := -I$(src) -Iinclude/math-emu -w
-EXTRA_AFLAGS := -traditional

-- 
Mathieu Desnoyers
Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal
OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F  BA06 3F25 A8FE 3BAE 9A68

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

* Re: [RFC patch 7/9] S390 remove -traditional
  2008-04-22 17:24 ` [RFC patch 7/9] S390 remove -traditional Mathieu Desnoyers
@ 2008-04-23  7:28   ` Heiko Carstens
  0 siblings, 0 replies; 2+ messages in thread
From: Heiko Carstens @ 2008-04-23  7:28 UTC (permalink / raw)
  To: Mathieu Desnoyers
  Cc: Sam Ravnborg, akpm, Ingo Molnar, linux-kernel, schwidefsky,
	linux390, linux-s390

On Tue, Apr 22, 2008 at 01:24:11PM -0400, Mathieu Desnoyers wrote:
> Subject: [RFC patch 7/9] Re: [PATCH] Stringify support commas
>  > This is a no-no for those archs that still use -traditional.
>  > > I dunno if this is a problem for you at the moment and the
>  > > right fix is anyway to nuke -traditional.
>  > > 
>  > >     Sam
> 
> (cross-compile test ok)
> 
> Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
> CC: Sam Ravnborg <sam@ravnborg.org>
> CC: schwidefsky@de.ibm.com
> CC: heiko.carstens@de.ibm.com
> CC: linux390@de.ibm.com
> CC: linux-s390@vger.kernel.org
> ---
>  arch/s390/kernel/Makefile   |    2 --
>  arch/s390/lib/Makefile      |    2 --
>  arch/s390/math-emu/Makefile |    1 -
>  3 files changed, 5 deletions(-)
> 
> Index: linux-2.6-lttng/arch/s390/kernel/Makefile
> ===================================================================
> --- linux-2.6-lttng.orig/arch/s390/kernel/Makefile	2008-04-21 10:04:43.000000000 -0400
> +++ linux-2.6-lttng/arch/s390/kernel/Makefile	2008-04-21 10:04:47.000000000 -0400
> @@ -2,8 +2,6 @@
>  # Makefile for the linux kernel.
>  #
> 
> -EXTRA_AFLAGS	:= -traditional
> -

Thanks, applied. This did cause problems in late 2.6.25 and I think Martin
had a similar patch ready.

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

end of thread, other threads:[~2008-04-23  7:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20080422172404.502954084@polymtl.ca>
2008-04-22 17:24 ` [RFC patch 7/9] S390 remove -traditional Mathieu Desnoyers
2008-04-23  7:28   ` Heiko Carstens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox