From 73ae94ea9b64b97d41be4fb9acfba4e0b3252af7 Mon Sep 17 00:00:00 2001 From: Michał Masłowski Date: Fri, 29 Mar 2013 20:14:42 +0100 Subject: Try to build ardour without SSE (untested). --- extra/ardour/PKGBUILD | 8 ++++---- 1 file 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 } -- cgit v1.2.3-54-g00ecf