Displaying 20 results from an estimated 2000 matches similar to: "nasm.h issues (sf.net bug #400)"
2012 Dec 03
4
[PATCH 1/5] Remove old GNU-stack sections from nasm files.
They are not needed since the section is defined in nasm.h.
---
src/libFLAC/ia32/bitreader_asm.nasm | 4 ----
src/libFLAC/ia32/cpu_asm.nasm | 4 ----
src/libFLAC/ia32/fixed_asm.nasm | 4 ----
src/libFLAC/ia32/lpc_asm.nasm | 4 ----
src/libFLAC/ia32/stream_encoder_asm.nasm | 4 ----
5 files changed, 20 deletions(-)
diff --git
2012 Feb 26
0
Testing needed
On 02/26/12 02:18 am, Erik de Castro Lopo wrote:
> Hi all,
>
> I think we're getting close to the first FLAC release in over 4
> years.
>
> I have tested whats currently in Git on x86, x86_64 and PowerPC
> Linux and would appreciate reports of successful compiles (and even
> more importantly any failures) on OSX, Windows and elsewhere.
Hi, build dies here on OS/2 as
2014 Jan 14
1
PATCH for lpc_asm.nasm
1) Two comments ";ASSERT(lp_quantization <= 31)" in the new functions ..._wide_asm_ia32()
-- just to mention this constraint.
(max. possible value of lp_quantization is 15, so it's not a problem)
2) "mov cl, ..." was replaced with "mov ecx, ..." (again Agner Fog, optimizing_assembly.pdf)
summary: write to a partial register may result in false dependencies
2014 Jun 19
4
Lets work towards a new version
lvqcl wrote:
> Audacity still uses VS2008 and slowly tries to migrate to VS2012.
> But as stated at <http://wiki.audacityteam.org/wiki/Developing_On_Windows>,
> "Audacity is currently a 32-bit only application". So it doesn't need
> 64-bit builds.
> Currently its trunk contains 'audacity.sln' made with Visual C++ Express 2008
> and
2014 Jun 19
5
Lets work towards a new version
lvqcl wrote:
> 1)
> Current MSVC solution (FLAC.sln and numerous .vcproj files) was made with
> VC2005 Express and doesn't allow to build 64-bit files/libraries.
>
> IMHO it's time to add 64-bit support for MSVC builds, but AFAIK only Visual Studio
> 2012/2013 Express are free and allow to build 64-bit files.
>
> VS 2005/2008 use .vcproj files, and VS
2012 Jan 01
1
Compiling 64-bit libFLAC/libFLAC++ on OS X Lion, anyone successful?
I have also asked this question on stackoverflow (http://stackoverflow.com/questions/8694676/compiling-64-bit-flac-libflac-in-os-x-lion), which you can answer if you're interested in reputation points.
I am very unfamiliar with compiling C/C++ source of this size, and I'm having trouble debugging the issue. Basically, in the root folder of the FLAC bundle, even if I use the flags
2014 Jun 19
0
Lets work towards a new version
Erik de Castro Lopo wrote:
>> VS 2005/2008 use .vcproj files, and VS 2010/2012/2013 use .vcxproj
>> and .vcxproj.filters files, so it's possible to have two sets of
>> MSVS solution files: one for 2005/2008 and another for 2010/2012/2013.
>>
>> But there will be two .sln files: current FLAC.sln and new FLAC-vs2013.sln
>> (or FLAC-vs201x.sln? or is it better
2014 Jun 19
0
Lets work towards a new version
Erik de Castro Lopo <mle+la at mega-nerd.com> ?????(?) ? ????? ?????? Thu, 19 Jun 2014 17:01:26 +0400:
>> (currently src/libFLAC/ia32 folder contains unused lpc_asm-unrolled.nasm
>> file, so why remove unused bitreader_asm.nasm and stream_encoder_asm.nasm files?)
>
> I don't see any point in keeping files in release tarballs or in Git that
> provide no value.
2014 Jul 04
0
[PATCH 1/3] removing asm version of precompute_partition_info_sums
Erik de Castro Lopo wrote:
>> 3)
>> Currently there are two ia32 asm files (bitreader_asm.nasm and stream_encoder_asm.nasm)
>> that are unused and not necessary to compile libFLAC: they offer no speed benefit
>> and the corresponding functions were commented out (*after* the release of 1.3.0):
>>
>>
2014 Jun 19
0
Lets work towards a new version
Erik de Castro Lopo wrote:
> It sees that the most serious bug in the flac bug tracker:
>
> https://sourceforge.net/p/flac/bugs/413/
>
> has been fixed in git. This fix alone is worth a new release so its
> time to work towards one.
>
> Things I need to do for this new release:
>
> * Deal with all current patches on the mailing list.
> * Review all bugs
2014 Jun 19
2
Lets work towards a new version
On Thu, 19 Jun 2014 05:00:39 +0400
lvqcl <lvqcl.mail at gmail.com> wrote:
>Erik de Castro Lopo wrote:
>
>> It sees that the most serious bug in the flac bug tracker:
>>
>> https://sourceforge.net/p/flac/bugs/413/
>>
>> has been fixed in git. This fix alone is worth a new release so its
>> time to work towards one.
>>
>> Things I need
2013 Sep 17
2
Performance and precompute_partition_info_sums_32bit_asm_ia32_()
Previously I wrote that precompute_partition_info_sums_32bit_asm_ia32_() only
makes encoding slower. Now I managed to compile flac with GCC 4.8.1, with this
function enabled and disabled. NASM was enabled, SSE intrinsics disabled.
Then I added -msse option (so that all C code was compiled with -msse),
then -msse2 and so on.
Input file for test: 44.1kHz/16bit/stereo; best compression mode (flac
2008 Jan 05
0
Assembly on Mac OS needs to be relocatable
I'm trying to port flac 1.2.1 to OS X (I'm taking over maintainership
of the Fink package), and I'm running into some problems with
bitreader_asm.nasm. After adding the following to nasm.h:
+%elifdef OBJ_FORMAT_macho
+ %define FLAC__PUBLIC_NEEDS_UNDERSCORE
+ %idefine code_section section .text
+ %idefine data_section section .data
+ %idefine bss_section section .bss
I can get
2009 Aug 05
2
FLAC 1.2.1 on OS X 10.4.11
hi,
according to the FAQ flac supports multichannel formats. i had no
luck with 1.1.4 though ( "Untitled.aif: ERROR: unsupported number
channels 8 for AIFF" ), i guess that feature was added in 1.2?
unfortunately, the binary for 1.2 does not run on OS X 10.4 (says
libiconv is too old). i removed libiconv and reinstalled that from
source, but then flac 1.2.1 just prints
2015 Jan 01
0
some tickets on SF that aren't relevant now
There are several tickets that can be closed IMHO:
================================================
Bug tickets:
#303: Text relocation on ia32
Seems to be fixed in http://git.xiph.org/?p=flac.git;a=commitdiff;h=12022d90dd3adc9f37dc2b16358cbecfe3c5be1c
(and then bitreader_asm.nasm was completely removed)
#356: Missing MSCOMCTL.OCX
#373: FLAC Frontend crashes on W7 x32 HP
#378: go.bat
2012 Feb 26
5
Testing needed
Hi all,
I think we're getting close to the first FLAC release in over 4 years.
I have tested whats currently in Git on x86, x86_64 and PowerPC Linux
and would appreciate reports of successful compiles (and even more
importantly any failures) on OSX, Windows and elsewhere.
Cheers,
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
2014 Jun 19
10
Lets work towards a new version
Hi all,
It sees that the most serious bug in the flac bug tracker:
https://sourceforge.net/p/flac/bugs/413/
has been fixed in git. This fix alone is worth a new release so its
time to work towards one.
Things I need to do for this new release:
* Deal with all current patches on the mailing list.
* Review all bugs reported against 1.3.0 on the sf.net.
* Testing and coordination of testing
2006 Apr 01
0
CESA-2005:381 Low CentOS 4 i386 and x86_64 nasm - security update
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
CentOS Errata and Security Advisory CESA-2005:381
https://rhn.redhat.com/errata/RHSA-2005-381.html
The following updated files have been uploaded and are currently
syncing to the mirrors:
i386:
nasm-0.98.38-3.EL4.i386.rpm
nasm-rdoff-0.98.38-3.EL4.i386.rpm
nasm-doc-0.98.38-3.EL4.i386.rpm
x86_64:
nasm-0.98.38-3.EL4.x86_64.rpm
2006 Jul 27
1
[PATCH] nasm cleanup
Hi folks,
here's a patch which cleans up the nasm call from Makefiles.
Abusing libtool and then having to drop in some additional
wrapper script to rewrite the commandline again is rather stupid.
cu
--
---------------------------------------------------------------------
Enrico Weigelt == metux IT service - http://www.metux.de/
2006 Jun 27
1
Build on Linux / Messages nasm error: short jump is out of range
Hi,
trying to build syslinux on Linux. Please help.
bash-2.05b$ uname -a
Linux bongo 2.4.32-ARXc3 COHERENT #4-ARX (Build 2660) Sun May 21 15:35:22 CEST 2006 i686 i686 i386 GNU/Linux
bash-2.05b$ BUILD/syslinux-3.11/opt/nasm-0.98.38-2/bin/nasm -version
NASM version 0.98.38 compiled on Jun 26 2006
But failed with:
+ make NASM=/home/axel/p/rpm/BUILD/syslinux-3.11/opt/nasm/bin
/nasm