diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-03-02 06:18:09 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-03-02 06:18:09 (GMT) |
commit | 108f0508915ddc4edb131964840a4af1c2a8b03c (patch) | |
tree | d67aa0cfa1ef4518778c3bcf83f78e4b2494a3a7 | |
parent | d3ebf64cd4724a5211b0d31d670991acbcec8629 (diff) |
Clifford Wolf:
Moved "-O3 -march=pentium" to linux release script
git-svn-id: http://svn.clifford.at/openscad/trunk@473 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | openscad.pro | 2 | ||||
-rwxr-xr-x | scripts/release-linux.sh | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/openscad.pro b/openscad.pro index ea6f03b..4613de7 100644 --- a/openscad.pro +++ b/openscad.pro @@ -61,8 +61,6 @@ else { INCLUDEPATH += /usr/include/eigen2 } -!macx:QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentium - # QMAKE_CFLAGS += -pg # QMAKE_CXXFLAGS += -pg # QMAKE_LFLAGS += -pg diff --git a/scripts/release-linux.sh b/scripts/release-linux.sh index edb79eb..2de7b86 100755 --- a/scripts/release-linux.sh +++ b/scripts/release-linux.sh @@ -7,7 +7,7 @@ set -ex # svnclean -qmake-qt4 VERSION=$VERSION +qmake-qt4 VERSION=$VERSION QMAKE_CXXFLAGS_RELEASE="-O3 -march=pentium" make rm -rf release |