summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-03-29 20:14:42 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-03-29 20:14:42 +0100
commit73ae94ea9b64b97d41be4fb9acfba4e0b3252af7 (patch)
tree2c18ee862de370a4ad3d63b5be77794a0bfda554
parent832f80f61c0187100933325af6b736fb154c2be1 (diff)
Try to build ardour without SSE (untested).
-rw-r--r--extra/ardour/PKGBUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/extra/ardour/PKGBUILD b/extra/ardour/PKGBUILD
index 9bbca5549..1ae044db7 100644
--- a/extra/ardour/PKGBUILD
+++ b/extra/ardour/PKGBUILD
@@ -25,12 +25,12 @@ build() {
# python2 fix
sed -i 's/python ${SRC}/python2 ${SRC}/' libs/pbd/wscript
+ # SSE code is used by default on all arches.
+ [ "$CARCH" == "mips64el" ] && extra=--no-fpu-optimization
+
python2 waf configure --prefix=/usr \
--configdir=/etc \
- --docs
-
- # All unknown arches are considered i686 with SSE.
- [ "$CARCH" == "mips64el" ] && extra="DIST_TARGET=none"
+ --docs $extra
python2 waf build $MAKEFLAGS
}