From 60a43df5c77d920d32f15921c3d0a1e0d2483d6f Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sat, 1 Feb 2014 12:12:42 +0100 Subject: [PATCH] Removed gcc -pipe on normal build --- src/build/compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/compile.sh b/src/build/compile.sh index 3398abd0a..8deac91b7 100755 --- a/src/build/compile.sh +++ b/src/build/compile.sh @@ -122,7 +122,7 @@ if [ $? -ne 0 ]; then export CFLAGS="-O2 -fno-gcse $CFLAGS" fi else - export CFLAGS="-O2 -pipe -march=$march -mtune=$mtune -fno-gcse $CFLAGS" + export CFLAGS="-O2 -march=$march -mtune=$mtune -fno-gcse $CFLAGS" fi