configure.ac: fix AVX, SSE and MMX options#20
Open
ffontaine wants to merge 1 commit intofreeswitch:masterfrom
Open
configure.ac: fix AVX, SSE and MMX options#20ffontaine wants to merge 1 commit intofreeswitch:masterfrom
ffontaine wants to merge 1 commit intofreeswitch:masterfrom
Conversation
AVX, SSE and MMX options are broken since freeswitch@87a900c For example, when the user enables SSE, it will also enable MMX and the user can't disable MMX Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Collaborator
|
The cascading of higher levels of MMX/SSE/AVX enabling the lower levels is by design. There are no devices with SSE which do not support MMX. If spandsp is not building for an i686 machine, this needs to be fixed. What is the build platform where it is failing? I just tried building the current spandsp code on an (not very recent) Fedora i686 machine with "./configure --enable-sse2" and it builds OK. So, the reported problem seems to relate to a particular environment. |
Author
|
Build failure is raised on buildroot by the following toolchain: |
|
The build script in #21 is explicitly enabling things that the CPU target doesn't support. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AVX, SSE and MMX options are broken since 87a900c
For example, when the user enables SSE, it will also enable MMX and the user can't disable MMX
Signed-off-by: Fabrice Fontaine fontaine.fabrice@gmail.com