Re: Re: [dev] EducOOo donated code for ARM Linux port
Rene Engelhard <[email protected]> Sat, 19 Feb 2011 13:55:50 +0100
| Newsgroups | gmane.comp.openoffice.devel.porting |
|---|---|
| Organization | OpenOffice.org |
| Message-ID | <[email protected]> |
Hi, On Sat, Feb 19, 2011 at 01:51:02PM +0100, Rene Engelhard wrote: > ARM_TARGET=3D7 Oh, and this: +# Default is armv7 mini. If you build +# for an older version (could be slow), +# please adapt to your needs + +.IF "$(ARM_TARGET)" =3D=3D "ARMV6" +ARCH_FLAGS+=3D-march=3Darmv6 -mfloat-abi=3Dsoftfp -D__SOFTFP__ +CDEFS+=3D-DARMV6 +.ENDIF + +.IF "$(ARM_TARGET)" =3D=3D "ARMV7" +ARCH_FLAGS+=3D-march=3Darmv7-a -mtune=3Dcortex-a8 -mfpu=3Dneon -mfloat-a= bi=3Dsoftfp -D__SOFTFP__ +CDEFS+=3D-DARMV7 +.ENDIF + is broken, too. *If* you want to optimize for speed, you want hardfp, and IMHO you don't = need to specify -mfloat-abi=3Dsoftfp -D__SOFTFP__ manually in either case, that's= the job of your toolchain. Gr=FC=DFe/Regards, Ren=E9