Re: [flac-dev] Lets do a 1.3.2 release

2016-01-18 Thread lvqcl
Dave Yeo wrote: > Seems that the default binutils on OS/2 is too old to support AVX2, > attached patch works around this. Not the best solution as best would be > configure tests, but simple. Are you sure that these binutils support AVX and FMA? (Currently libFLAC doesn't contain AVX and FMA inst

[flac-dev] About the commit "Fix compiler warnings from new compiler flags."

2016-01-18 Thread lvqcl
https://git.xiph.org/?p=flac.git;a=commit;h=91790ef965553fd6d76e1f51b55dc4de3b54ad4b It (among other things) changes (void)chown(...) into FLAC_CHECK_RETURN(chown(...)). I don't know what warning "(void)chown(...);" raises, and I cannot test it because I don't have Linux, but FLAC_CHECK_RETURN

[flac-dev] [PATCH] for iffscan

2016-01-18 Thread lvqcl
Some format strings in iffscan.c lack "%" before PRIu64, and don't have "\n",.. Fixed in the attached patch. iffscan.patch Description: Binary data ___ flac-dev mailing list flac-dev@xiph.org http://lists.xiph.org/mailman/listinfo/flac-dev

[flac-dev] [PATCH] for grabbag/snprintf.c

2016-01-18 Thread lvqcl
Fixed a comment in the beginning of the file. grabbag_snprintf.patch Description: Binary data ___ flac-dev mailing list flac-dev@xiph.org http://lists.xiph.org/mailman/listinfo/flac-dev

Re: [flac-dev] Lets do a 1.3.2 release

2016-01-18 Thread Dave Yeo
On 01/18/16 07:42 AM, lvqcl wrote: Dave Yeo wrote: >Seems that the default binutils on OS/2 is too old to support AVX2, >attached patch works around this. Not the best solution as best would be >configure tests, but simple. Are you sure that these binutils support AVX and FMA? (Currently libFL

Re: [flac-dev] Lets do a 1.3.2 release

2016-01-18 Thread lvqcl
Dave Yeo wrote: > The nature of the error implies AVX2 support that is missing but I'm not > much up on assembly, > > Best to be safe so updated patch attached. > I've also opened a ticket, http://trac.netlabs.org/rpm/ticket/165#ticket > Dave I cannot find information what version of binutils sup

Re: [flac-dev] [PATCH] for iffscan

2016-01-18 Thread Erik de Castro Lopo
lvqcl wrote: > Some format strings in iffscan.c lack "%" before PRIu64, and don't > have "\n",.. Fixed in the attached patch. Applied. Thanks. Erik -- -- Erik de Castro Lopo http://www.mega-nerd.com/ ___

Re: [flac-dev] [PATCH] for grabbag/snprintf.c

2016-01-18 Thread Erik de Castro Lopo
lvqcl wrote: > Fixed a comment in the beginning of the file. Applied. Thanks. Erik -- -- Erik de Castro Lopo http://www.mega-nerd.com/ ___ flac-dev mailing list flac-dev@xiph.org http

Re: [flac-dev] About the commit "Fix compiler warnings from new compiler flags."

2016-01-18 Thread Erik de Castro Lopo
lvqcl wrote: > I don't know what warning "(void)chown(...);" raises, The warning is: metadata_iterators.c: In function ‘set_file_stats_’: metadata_iterators.c:3362:2: warning: ignoring return value of ‘chown’, declared with attribute warn_unused_result [-Wunused-result] (vo

Re: [flac-dev] Lets do a 1.3.2 release

2016-01-18 Thread Dave Yeo
On 01/18/16 01:46 PM, lvqcl wrote: > Dave Yeo wrote: > >> The nature of the error implies AVX2 support that is missing but I'm not >> much up on assembly, >> >> Best to be safe so updated patch attached. >> I've also opened a ticket, http://trac.netlabs.org/rpm/ticket/165#ticket >> Dave > > I canno