summaryrefslogtreecommitdiff
path: root/strata/audio-bluetooth/webrtc-audio-processing.morph
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-07-08 10:25:25 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-07-08 10:25:25 +0000
commit32256b44467398da612139c344da2881c0bda8d1 (patch)
tree4c614b546edce0875be46c80fdfc0c5bf3151565 /strata/audio-bluetooth/webrtc-audio-processing.morph
parentcb16b957a1447ac3809070d8d8cdf4c019a161a2 (diff)
downloaddefinitions-32256b44467398da612139c344da2881c0bda8d1.tar.gz
Use msse2 GCC flags only in x86baserock/pedroalvarez/msse2-fix
Change-Id: Ic438668d4413cbba6c680604fa97ca160b3387e6
Diffstat (limited to 'strata/audio-bluetooth/webrtc-audio-processing.morph')
-rw-r--r--strata/audio-bluetooth/webrtc-audio-processing.morph6
1 files changed, 4 insertions, 2 deletions
diff --git a/strata/audio-bluetooth/webrtc-audio-processing.morph b/strata/audio-bluetooth/webrtc-audio-processing.morph
index 4c10a489..10a99de4 100644
--- a/strata/audio-bluetooth/webrtc-audio-processing.morph
+++ b/strata/audio-bluetooth/webrtc-audio-processing.morph
@@ -2,6 +2,8 @@ name: webrtc-audio-processing
kind: chunk
build-system: autotools
pre-configure-commands:
+- NOCONFIGURE=1 ./autogen.sh
- |
- NOCONFIGURE=1 ./autogen.sh
- sed -i -e "s/-O2/& -msse2/" configure
+ case "$MORPH_ARCH" in
+ x86*) sed -i -e "s/-O2/& -msse2/" configure ;;
+ esac