From 237739ba015ae2d7aefec678bc472d4f9e3c3a50 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 2 Aug 2015 03:11:37 +0200 Subject: [PATCH] Update OS X version examples in wxOSX readme. Don't use the not supported any longer 10.5. --- docs/osx/install.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/osx/install.txt b/docs/osx/install.txt index d02c9c2183..e5038249dc 100644 --- a/docs/osx/install.txt +++ b/docs/osx/install.txt @@ -24,7 +24,6 @@ installed when you install Xcode 3.x. --------- -# Build the library for Cocoa (wxWidgets 2.9.0 and later) mkdir build-cocoa-debug cd build-cocoa-debug ../configure --enable-debug @@ -35,7 +34,7 @@ cd demos; make;cd .. --------- -# Build the library for Carbon +# Build the library for Carbon (old, deprecated, 32 bits only) mkdir build-carbon-debug cd build-carbon-debug ../configure --with-carbon --enable-debug --disable-shared --enable-macosx_arch=i386 --with-macosx-sdk=/Developer/SDKs/MacOSX10.6.sdk CC=/Developer/usr/bin/gcc-4.2 CXX=/Developer/usr/bin/g++-4.2 LD=/Developer/usr/bin/ld @@ -131,8 +130,8 @@ binaries together. Assuming building on a PPC system: 2. Then, build for Intel, in a different folder. This time use: -export CFLAGS="-g -isysroot /Developer/SDKs/MacOSX10.5.sdk -arch i386" -export LDFLAGS="-syslibroot,/Developer/SDKs/MacOSX10.5.sdk" +export CFLAGS="-g -isysroot /Developer/SDKs/MacOSX10.7.sdk -arch i386" +export LDFLAGS="-syslibroot,/Developer/SDKs/MacOSX10.7.sdk" ./configure --disable-dependency-tracking --enable-static=yes --enable-shared=no \ --target=i386-apple-darwin8 --host=powerpc-apple-darwin8 --build=i386-apple-darwin8