From 14a73c76e6ef5401ace42777dbea21a6aa85084f Mon Sep 17 00:00:00 2001 From: Hypermedia Isobar Date: Wed, 23 Apr 2014 12:42:13 +0200 Subject: [PATCH] Fix flags used by make There is no `-0s` (zero) flag, bu there is `-Os`. There is no `-W1` (one) flag, but there is `-Wl`. --- make | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make b/make index 0a216a1..85a76b2 100755 --- a/make +++ b/make @@ -3,9 +3,9 @@ SCRIPTABS=$(readlink -f $0) SCRIPTPATH=`dirname $SCRIPTABS` SCRIPT=`basename $0` -export CFLAGS="-march=i486 -mtune=i686 -0s -pipe" -export CXXFLAGS="-march=i486 -mtune=i686 -0s -pipe" -export LDFLAGS="-W1,-O1" +export CFLAGS="-march=i486 -mtune=i686 -Os -pipe" +export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe" +export LDFLAGS="-Wl,-O1" if [ -z "$1" ] then