linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [uClinux-dev] Userspace command line gcc options troubles
@ 2010-06-17 21:03 Daniel Glöckner
  2010-06-18  7:20 ` Fabio Giovagnini
  2010-06-21  4:44 ` Paul Mundt
  0 siblings, 2 replies; 3+ messages in thread
From: Daniel Glöckner @ 2010-06-17 21:03 UTC (permalink / raw)
  To: linux-sh

On Thu, Jun 17, 2010 at 12:32:56PM +0200, Fabio Giovagnini wrote:
> uclinux/bin/as: unrecognized option '--fdpic--isa=sh2a'

> How could I solve?

cd /home/fgiovagnini/sh7203/sh7203-uclinux-4.4-206/build/target/
./bin/sh-uclinux-gcc -dumpspecs > lib/gcc/sh-uclinux/4.4.1/specs
sed -i 's/subtarget_asm_spec)/& /' lib/gcc/sh-uclinux/4.4.1/specs

Best regards

  Daniel

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

* Re: [uClinux-dev] Userspace command line gcc options troubles
  2010-06-17 21:03 [uClinux-dev] Userspace command line gcc options troubles Daniel Glöckner
@ 2010-06-18  7:20 ` Fabio Giovagnini
  2010-06-21  4:44 ` Paul Mundt
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Giovagnini @ 2010-06-18  7:20 UTC (permalink / raw)
  To: linux-sh

This is the result (i suppose):
*asm:
%(subtarget_asm_endian_spec) %{mrelax:-relax 
%(subtarget_asm_relax_spec)}%(subtarget_asm_isa_spec) %(subtarget_asm_spec) 
%{m2a:--isa=sh2a} %{m2a-single:--isa=sh2a} %{m2a-single-only:--isa=sh2a} 
%{m2a-nofpu:--isa=sh2a-nofpu} %{m5-compact*:--isa=SHcompact} %{m5-32media*:--
isa=SHmedia --abi2} %{m5-64media*:--isa=SHmedia --abid} %{m4al:-dsp} 
%{mcut2-workaround:-cut2-workaround}


Nowhere I can see :
--fdpic--isa=sh2a

I think it should be 
--fdpic --isa=sh2a
at most (with a blank space in between)



In data giovedì 17 giugno 2010 23:03:47, Daniel Glöckner ha scritto:
: > On Thu, Jun 17, 2010 at 12:32:56PM +0200, Fabio Giovagnini wrote:
> > uclinux/bin/as: unrecognized option '--fdpic--isa=sh2a'
> >
> > How could I solve?
> 
> cd /home/fgiovagnini/sh7203/sh7203-uclinux-4.4-206/build/target/
> ./bin/sh-uclinux-gcc -dumpspecs > lib/gcc/sh-uclinux/4.4.1/specs
> sed -i 's/subtarget_asm_spec)/& /' lib/gcc/sh-uclinux/4.4.1/specs
> 
> Best regards
> 
>   Daniel
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

-- 
Fabio Giovagnini

Aurion s.r.l.
P.I e C.F.
00885711200
skype: aurion.giovagnini
Tel. +39.051.594.78.24
Cell. +39.335.83.50.919
www.aurion-tech.com

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

* Re: [uClinux-dev] Userspace command line gcc options troubles
  2010-06-17 21:03 [uClinux-dev] Userspace command line gcc options troubles Daniel Glöckner
  2010-06-18  7:20 ` Fabio Giovagnini
@ 2010-06-21  4:44 ` Paul Mundt
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Mundt @ 2010-06-21  4:44 UTC (permalink / raw)
  To: linux-sh

(Adding superh-gnu-discuss to the Cc..)

On Fri, Jun 18, 2010 at 09:20:13AM +0200, Fabio Giovagnini wrote:
> This is the result (i suppose):
> *asm:
> %(subtarget_asm_endian_spec) %{mrelax:-relax 
> %(subtarget_asm_relax_spec)}%(subtarget_asm_isa_spec) %(subtarget_asm_spec) 
> %{m2a:--isa=sh2a} %{m2a-single:--isa=sh2a} %{m2a-single-only:--isa=sh2a} 
> %{m2a-nofpu:--isa=sh2a-nofpu} %{m5-compact*:--isa=SHcompact} %{m5-32media*:--
> isa=SHmedia --abi2} %{m5-64media*:--isa=SHmedia --abid} %{m4al:-dsp} 
> %{mcut2-workaround:-cut2-workaround}
> 
> Nowhere I can see :
> --fdpic--isa=sh2a
> 
> I think it should be 
> --fdpic --isa=sh2a
> at most (with a blank space in between)
> 
> In data gioved? 17 giugno 2010 23:03:47, Daniel Gl?ckner ha scritto:
> : > On Thu, Jun 17, 2010 at 12:32:56PM +0200, Fabio Giovagnini wrote:
> > > uclinux/bin/as: unrecognized option '--fdpic--isa=sh2a'
> > >
> > > How could I solve?
> > 
> > cd /home/fgiovagnini/sh7203/sh7203-uclinux-4.4-206/build/target/
> > ./bin/sh-uclinux-gcc -dumpspecs > lib/gcc/sh-uclinux/4.4.1/specs
> > sed -i 's/subtarget_asm_spec)/& /' lib/gcc/sh-uclinux/4.4.1/specs

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

end of thread, other threads:[~2010-06-21  4:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-17 21:03 [uClinux-dev] Userspace command line gcc options troubles Daniel Glöckner
2010-06-18  7:20 ` Fabio Giovagnini
2010-06-21  4:44 ` Paul Mundt

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 NNTP newsgroup(s).