]> granicus.if.org Git - libjpeg-turbo/commitdiff
Reflect the fact that CFLAGS=CXXFLAGS=-O3 by default
authorDRC <dcommander@users.sourceforge.net>
Sun, 14 Feb 2010 08:02:55 +0000 (08:02 +0000)
committerDRC <dcommander@users.sourceforge.net>
Sun, 14 Feb 2010 08:02:55 +0000 (08:02 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@91 632fc199-4ca6-4c93-a231-07263d6284db

README-turbo.txt

index b2b3471b2af2627f9ef497f67c849d405fbf9379..e5725a196728805e463a8b6304da17fff57940c0 100755 (executable)
@@ -78,7 +78,7 @@ for 64-bit build instructions.)
 
   cd libjpeg-turbo
   autoreconf -fiv
-  sh ./configure CFLAGS='-O3' CXXFLAGS='-O3'
+  sh ./configure
   make
 
 NOTE: Running autoreconf is only necessary if building libjpeg-turbo from the
@@ -155,9 +155,9 @@ Build Recipes
 
 Same instructions as above, but add
 
-  --host i686-pc-linux-gnu
+  --host i686-pc-linux-gnu CFLAGS='-O3 -m32' CXXFLAGS='-O3 -m32'
 
-to the configure command line and replace CFLAGS and CXXFLAGS with '-O3 -m32'.
+to the configure command line.
 
 
 64-bit Library Build on 64-bit OS/X
@@ -175,9 +175,9 @@ to the configure command line.  NASM 2.07 from MacPorts must be installed.
 
 Same instructions as above, but add
 
-  LDFLAGS='-m32'
+  CFLAGS='-O3 -m32' CXXFLAGS='-O3 -m32' LDFLAGS=-m32
 
-to the configure command line and replace CFLAGS and CXXFLAGS with '-O3 -m32'.
+to the configure command line.
 
 
 64-bit Library Build on 64-bit Solaris
@@ -185,9 +185,9 @@ to the configure command line and replace CFLAGS and CXXFLAGS with '-O3 -m32'.
 
 Same instructions as above, but add
 
-  --host x86_64-pc-solaris LDFLAGS='-m64'
+  --host x86_64-pc-solaris CFLAGS='-O3 -m64' CXXFLAGS='-O3 -m64' LDFLAGS=-m64
 
-to the configure command line and replace CFLAGS and CXXFLAGS with '-O3 -m64'. 
+to the configure command line.
 
 
 MinGW Build on Cygwin