-
-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable building vectorized code for lame
On some versions of Emscripten/configurations check for xmmintrin returns true but the vectorized code fails to build. See: #16
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/configure b/configure | ||
index 87aef96..d8f614d 100755 | ||
--- a/configure | ||
+++ b/configure | ||
@@ -15680,7 +15680,7 @@ $as_echo "#define USE_FAST_LOG 1" >>confdefs.h | ||
;; | ||
*86) | ||
CPUTYPE="i386" | ||
- if test $ac_cv_header_xmmintrin_h = yes ; then | ||
+ if false ; then | ||
WITH_XMM=yes | ||
WITH_VECTOR=yes | ||
fi |