public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk
@ 2008-08-30 20:37 Shinya Kuribayashi
  2008-08-30 20:38 ` [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD Shinya Kuribayashi
  2008-09-06 22:33 ` [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk Wolfgang Denk
  0 siblings, 2 replies; 4+ messages in thread
From: Shinya Kuribayashi @ 2008-08-30 20:37 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---
 config.mk     |   16 ----------------
 ppc_config.mk |   14 ++++++++++++++
 2 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/config.mk b/config.mk
index 1dac29b..c225df1 100644
--- a/config.mk
+++ b/config.mk
@@ -44,22 +44,6 @@ PLATFORM_RELFLAGS =
 PLATFORM_CPPFLAGS =
 PLATFORM_LDFLAGS =
 
-#
-# When cross-compiling on NetBSD, we have to define __PPC__ or else we
-# will pick up a va_list declaration that is incompatible with the
-# actual argument lists emitted by the compiler.
-#
-# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
-
-ifeq ($(ARCH),ppc)
-ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
-PLATFORM_CPPFLAGS+= -D__PPC__
-endif
-ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
-PLATFORM_CPPFLAGS+= -D__PPC__
-endif
-endif
-
 ifeq ($(ARCH),arm)
 ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
 PLATFORM_CPPFLAGS+= -D__ARM__
diff --git a/ppc_config.mk b/ppc_config.mk
index 31993bd..c95b3b1 100644
--- a/ppc_config.mk
+++ b/ppc_config.mk
@@ -23,3 +23,17 @@
 
 PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__
 PLATFORM_LDFLAGS  += -n
+
+#
+# When cross-compiling on NetBSD, we have to define __PPC__ or else we
+# will pick up a va_list declaration that is incompatible with the
+# actual argument lists emitted by the compiler.
+#
+# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
+
+ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
+PLATFORM_CPPFLAGS+= -D__PPC__
+endif
+ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
+PLATFORM_CPPFLAGS+= -D__PPC__
+endif

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

* [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD
  2008-08-30 20:37 [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk Shinya Kuribayashi
@ 2008-08-30 20:38 ` Shinya Kuribayashi
  2008-09-11 15:10   ` Shinya Kuribayashi
  2008-09-06 22:33 ` [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk Wolfgang Denk
  1 sibling, 1 reply; 4+ messages in thread
From: Shinya Kuribayashi @ 2008-08-30 20:38 UTC (permalink / raw)
  To: u-boot

__ARM__ is given by arm_config.mk automatically.

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---
 config.mk |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/config.mk b/config.mk
index c225df1..5a9334c 100644
--- a/config.mk
+++ b/config.mk
@@ -44,15 +44,6 @@ PLATFORM_RELFLAGS =
 PLATFORM_CPPFLAGS =
 PLATFORM_LDFLAGS =
 
-ifeq ($(ARCH),arm)
-ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
-PLATFORM_CPPFLAGS+= -D__ARM__
-endif
-ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
-PLATFORM_CPPFLAGS+= -D__ARM__
-endif
-endif
-
 #########################################################################
 
 CONFIG_SHELL	:= $(shell if [ -x "$$BASH" ]; then echo $$BASH; \

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

* [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk
  2008-08-30 20:37 [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk Shinya Kuribayashi
  2008-08-30 20:38 ` [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD Shinya Kuribayashi
@ 2008-09-06 22:33 ` Wolfgang Denk
  1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2008-09-06 22:33 UTC (permalink / raw)
  To: u-boot

Dear Shinya Kuribayashi,

In message <48B9AF70.9010203@ruby.dti.ne.jp> you wrote:
> Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
> ---
>  config.mk     |   16 ----------------
>  ppc_config.mk |   14 ++++++++++++++
>  2 files changed, 14 insertions(+), 16 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The following statement is not true.  The previous statement is true.

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

* [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD
  2008-08-30 20:38 ` [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD Shinya Kuribayashi
@ 2008-09-11 15:10   ` Shinya Kuribayashi
  0 siblings, 0 replies; 4+ messages in thread
From: Shinya Kuribayashi @ 2008-09-11 15:10 UTC (permalink / raw)
  To: u-boot

Ping.

[ I should have let you know, Wolfgang.  Sorry. ]

Shinya Kuribayashi wrote:
> __ARM__ is given by arm_config.mk automatically.
> 
> Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
> ---
>  config.mk |    9 ---------
>  1 files changed, 0 insertions(+), 9 deletions(-)
> 
> diff --git a/config.mk b/config.mk
> index c225df1..5a9334c 100644
> --- a/config.mk
> +++ b/config.mk
> @@ -44,15 +44,6 @@ PLATFORM_RELFLAGS =
>  PLATFORM_CPPFLAGS =
>  PLATFORM_LDFLAGS =
>  
> -ifeq ($(ARCH),arm)
> -ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
> -PLATFORM_CPPFLAGS+= -D__ARM__
> -endif
> -ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
> -PLATFORM_CPPFLAGS+= -D__ARM__
> -endif
> -endif
> -
>  #########################################################################
>  
>  CONFIG_SHELL	:= $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> 

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

end of thread, other threads:[~2008-09-11 15:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-30 20:37 [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk Shinya Kuribayashi
2008-08-30 20:38 ` [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD Shinya Kuribayashi
2008-09-11 15:10   ` Shinya Kuribayashi
2008-09-06 22:33 ` [U-Boot] [PATCH] config.mk: Move arch-specific condition to $(ARCH)_config.mk Wolfgang Denk

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