Skip to content

Commit

Permalink
Disable fast-math for Linux due to ABI mismatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisstaite committed Aug 12, 2023
1 parent 6359038 commit 1a2904b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cd build

curl -L https://sourceforge.net/projects/lame/files/lame/3.100/lame-3.100.tar.gz/download | tar -xzf -
sed -i 's/0-9\*0-9\*/\[0-9]\*\[0-9]\*/g' lame-*/configure
lame-*/configure CFLAGS=-fPIC LDFLAGS=-fPIC --prefix=`pwd` --enable-expopt --enable-nasm --disable-frontend \
lame-*/configure "CFLAGS=-fPIC -fno-fast-math" LDFLAGS=-fPIC --prefix=`pwd` --enable-expopt --enable-nasm --disable-frontend \
--disable-decoder --disable-analyzer-hooks --disable-debug --disable-dependency-tracking
cp ../fixed-libmp3lame.sym lame-*/include/libmp3lame.sym
make
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
configuration['setup_requires'] = ['setuptools-git-versioning']
configuration['setuptools_git_versioning'] = {
'enabled': True,
'starting_version': '1.6.0'
'starting_version': '1.6.1'
}
else:
configuration['version'] = '1.6.0'
configuration['version'] = '1.6.1'

# Create the package
setuptools.setup(**configuration)

0 comments on commit 1a2904b

Please sign in to comment.