summaryrefslogtreecommitdiff
path: root/README.cross
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-07-01 00:45:03 +0300
committerTor Lillqvist <tml@iki.fi>2011-07-01 00:45:03 +0300
commit72ea8f17473d3ae90dadbe0438e08dbed28ca725 (patch)
treeacf1c1a8672f2692e068abdd16b1c81388308520 /README.cross
parente9ea4c77bf55f01bdf332e22ab50bfee2f0a6aec (diff)
Add example autogen.lastrun for building for the iOS Simulator
Diffstat (limited to 'README.cross')
-rw-r--r--README.cross14
1 files changed, 13 insertions, 1 deletions
diff --git a/README.cross b/README.cross
index 57cf592c2954..291eaf6ee469 100644
--- a/README.cross
+++ b/README.cross
@@ -169,7 +169,7 @@ thought yet.
The Apple tool-chain for iOS cross-building is available only for
MacOSX, so that is where I have been doing it.
-Here is my autogen.lastrun for iOS:
+Here is my autogen.lastrun for iOS (device):
CXX=ccache /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-4.2 -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk
CC=ccache /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk
CC_FOR_BUILD=ccache /Xcode3/usr/bin/gcc-4.0
@@ -179,6 +179,18 @@ CXX_FOR_BUILD=ccache /Xcode3/usr/bin/g++-4.0
--with-num-cpus=1
--with-max-jobs=1
+And here for the iOS simulator:
+CXX=ccache /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk
+CC=ccache /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk
+CC_FOR_BUILD=ccache /Xcode3/usr/bin/gcc-4.0
+CXX_FOR_BUILD=ccache /Xcode3/usr/bin/g++-4.0
+--with-distro=LibreOfficeiOS
+--with-external-tar=/Volumes/ooo/git/master/src
+--with-num-cpus=1
+--with-max-jobs=1
+--disable-librsvg
+--enable-debug
+
Android
-------