if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then eval "$( declare -f build | \ sed ' s@./configure@./configure -no-sse2@g ' )" fi # enable XCB explicitely for now on i486 (rather fail early than to # get weird startup messages of Qt5 applications hours later) if [ "$CARCH" = 'i486' ]; then eval "$( declare -f build | \ sed ' s/configure/configure -xcb / ' )" fi # no LTO on 486 slaves, they die with out-of-memory if [ "$CARCH" = 'i486' ]; then eval "$( declare -f build | \ sed ' s/-ltcg/-no-ltcg/ s/\(.*qmake *\)CONFIG+=fat-static-lto\(.*\)/\1 \2/ ' )" fi