On 23 September 2014 15:35, Bernd Kuhls <[email protected]> wrote: > Cristian Morales Vega <[email protected]> wrote in news:1411474645-19490- > [email protected]: > >> e.g. fminf() is not implemented, only fmin(), but both are defined. > > Hi, > > this patch really fixes a build error with ffmpeg making my previous patch > obsolete: http://git.buildroot.net/buildroot/tree/package/ffmpeg/ffmpeg-0001- > fminf.patch > > Tested-by: Bernd Kuhls <[email protected]>
That sounds a bit awkward. IIRC we deliberately do not provide wrappers for those since: ---8<--- /* For the time being, do _NOT_ implement these functions * that are defined by SuSv3 [because we don't need them * and nobody asked to include them] */ #undef L_fdimf /*float fdimf(float, float);*/ #undef L_fmaf /*float fmaf(float, float, float);*/ #undef L_fmaxf /*float fmaxf(float, float);*/ #undef L_fminf /*float fminf(float, float);*/ #undef L_nearbyintf /*float nearbyintf(float);*/ #undef L_nexttowardf /*float nexttowardf(float, long double);*/ #undef L_remquof /*float remquof(float, float, int *);*/ #undef L_scalblnf /*float scalblnf(float, long);*/ #undef L_tgammaf /*float tgammaf(float);*/ ---8<--- Anyone got a better idea to conditionalize those other than Christian's patch upthread? TIA! _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
