search for: flac__has_as

Displaying 4 results from an estimated 4 matches for "flac__has_as".

Did you mean: flac__has_gas
2005 Mar 01
0
flac-1.1.2 configure and Makefile fixes
...g/~lu_zero > > > --- configure.in 2005-02-03 06:03:25.000000000 +0100 > +++ /tmp/configure.in 2005-02-19 14:11:56.714378040 +0100 > @@ -184,14 +184,17 @@ > fi > > # only matters for PowerPC > -AC_CHECK_PROGS(AS, as) > -AC_CHECK_PROGS(GAS, gas) > -AM_CONDITIONAL(FLaC__HAS_AS, test -n "$AS") > -AM_CONDITIONAL(FLaC__HAS_GAS, test -n "$GAS") > -if test -n "$AS" ; then > +AC_CHECK_PROGS(AS, as, as) > +AC_CHECK_PROGS(AS, gas, gas) > + > +test "$AS" = "as" && as --version | grep GNU >/dev/null &am...
2005 Feb 19
2
flac-1.1.2 configure and Makefile fixes
I spent a bit of time trying to make the configure behave. that's the result, I didn't check if the asm output runs correctly (looks forcefully disabled) but at least builds as should. lu -- Luca Barbato Gentoo/linux Developer Gentoo/PPC Operational Manager http://dev.gentoo.org/~lu_zero -------------- next part -------------- A non-text attachment was scrubbed... Name:
2014 Jul 03
0
PPC asm is disabled since Jan 2005? Why?
...tivec: why libFLAC compares > 'order' and 8 in C code and not in asm. ...more about PPC ASM: http://git.xiph.org/?p=flac.git;a=commitdiff;h=63d489ae3140296419afdfc4cfc87cc2c7cb9faf http://git.xiph.org/?p=flac.git;a=commitdiff;h=3c8d2973cb87e318c11f3a487f2204bf0d673176 +AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no") -if FLaC__HAS_AS +#@@@@@@ +if FLaC__HAS_AS__TEMPORARILY_DISABLED -CPUCFLAGS = -maltivec -mabi=altivec -force_cpusubtype_ALL +#@@@@@@ PPC optimizations temporarily disabled +CPUCFLAGS = -maltivec -mabi=altivec -force_cpusubtype_ALL -...
2014 Jul 03
4
[PATCH] two patches of doubtful usefulness
Erik de Castro Lopo wrote: >> There's the following code in stream_decoder.c: > > Like you, I don't see a lot of value in these. I think I'll decline > these. FLAC__lpc_restore_signal_asm_ia32_mmx compares 'order' argument with 4 and if it's greater then it jumps to FLAC__lpc_restore_signal_asm_ia32. I wonder why the same wasn't done for PPC/Altivec: