Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-09-10 Thread Masahiro Yamada
Hi Jeroen, On Tue, 09 Sep 2014 19:34:44 +0200 Jeroen Hofstee wrote: > Hello Albert, > > On 09-09-14 16:31, Albert ARIBAUD wrote: > > On Thu, 31 Jul 2014 19:01:22 +0900, Masahiro Yamada > > wrote: > > > >>> HOSTCXX = g++ > >>> HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-

Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-09-10 Thread Jeroen Hofstee
Hello Albert, On 09-09-14 21:59, Albert ARIBAUD wrote: Hi Jeroen, On Tue, 09 Sep 2014 19:34:44 +0200, Jeroen Hofstee wrote: I've tried building rpi_b as per the README, but I keep getting /usr/bin/as: unrecognized option '-mfloat-abi=soft' clang: error: assembler command fai

Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-09-09 Thread Jeroen Hofstee
Hi, On 09-09-14 21:59, Albert ARIBAUD wrote: Hi Jeroen, On Tue, 09 Sep 2014 19:34:44 +0200, Jeroen Hofstee wrote: Hello Albert, On 09-09-14 16:31, Albert ARIBAUD wrote: On Thu, 31 Jul 2014 19:01:22 +0900, Masahiro Yamada wrote: HOSTCXX = g++ HOSTCFLAGS = -Wall -Wstrict-prot

Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-09-09 Thread Albert ARIBAUD
Hi Jeroen, On Tue, 09 Sep 2014 19:34:44 +0200, Jeroen Hofstee wrote: > Hello Albert, > > On 09-09-14 16:31, Albert ARIBAUD wrote: > > On Thu, 31 Jul 2014 19:01:22 +0900, Masahiro Yamada > > wrote: > > > >>> HOSTCXX = g++ > >>> HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-

Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-09-09 Thread Jeroen Hofstee
Hello Albert, On 09-09-14 16:31, Albert ARIBAUD wrote: On Thu, 31 Jul 2014 19:01:22 +0900, Masahiro Yamada wrote: HOSTCXX = g++ HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer For consistency, HOSTCXX = c++ ? So, Jeroen, what is your pick ? Will you send

Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-09-09 Thread Albert ARIBAUD
Hi Jeroen, Masahiro, On Thu, 31 Jul 2014 19:01:22 +0900, Masahiro Yamada wrote: > > HOSTCXX = g++ > > HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer > For consistency, > > HOSTCXX = c++ > > ? So, Jeroen, what is your pick ? Will you send a v3 7/8, or are you

Re: [U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-07-31 Thread Masahiro Yamada
Hi Jeroen, On Wed, 30 Jul 2014 21:54:55 +0200 Jeroen Hofstee wrote: > Since the host compiler might not be gcc but e.g. clang > default to cc to invoke it. > > cc: Masahiro Yamada > cc: Tom Rini > Signed-off-by: Jeroen Hofstee > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 de

[U-Boot] [PATCH v2 7/8] Makefile: default to cc for host compiler

2014-07-30 Thread Jeroen Hofstee
Since the host compiler might not be gcc but e.g. clang default to cc to invoke it. cc: Masahiro Yamada cc: Tom Rini Signed-off-by: Jeroen Hofstee --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 80eb239..c19f7d9 100644 --- a/Makefile +