https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89093
--- Comment #27 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> --- (In reply to Bernd Edlinger from comment #25) > you might consider adding something like that to your patch: > > Index: elf.h > =================================================================== > --- elf.h (revision 268337) > +++ elf.h (working copy) > @@ -64,7 +64,7 @@ > %{mapcs-*:-mapcs-%*} \ > %(subtarget_asm_float_spec) \ > %{mthumb-interwork:-mthumb-interwork} \ > -%{mfloat-abi=*} %{!mfpu=auto: %{mfpu=*}} \ > +%{mfloat-abi=*} %{!mfpu=auto: %{!mfpu=none: %{mfpu=*}}} \ > %(subtarget_extra_asm_spec)" > #endif > > > > otherwise using -mfpu=none won't work on the command line. > becuse gas does not understand it. Yes, that's what I've been playing with. I've run out of time this week because of other work commitments, I hope to get back to this early next week. Ramana