README.cross 17.1 KB
Newer Older
Tor Lillqvist's avatar
Tor Lillqvist committed
1 2 3
Cross-compiling LibreOffice
===========================

4 5
Cross-compilation work has been done, to various degrees, for four
platforms: Windows, iOS, Android and PowerPC Mac OS X.
Tor Lillqvist's avatar
Tor Lillqvist committed
6 7 8 9 10 11


General
-------

In GNU Autoconf terminology, "build" is the platform on which you are
12
running a build of some software and "host" is the platform on which
Tor Lillqvist's avatar
Tor Lillqvist committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
the software you are building will run. Only in the specific case of
building compilers and other programming tools is the term "target"
used to indicate the platform for which the tools your are building
will produce code. As LibreOffice is not a compiler, the "target" term
should not be used in the context of cross-compilation.

(For a case where all three of "build", "host" and "target" are
different: consider a gcc cross-compiler running on Windows, producing
code for Android, where the cross-compiler itself was built on
Linux. (This is a real case.) An interesting tidbit is that such
configurations are called "Canadian Cross".)

Even though the LibreOffice build mechanism is highly unorthodox, the
configure script takes the normal --build and --host options like any
GNU Autoconf -based configure script. To cross-compile, you basically
need just to specify a suitable --host option and things should work
29
out nicely. In practise, many details needed to be handled. See
Tor Lillqvist's avatar
Tor Lillqvist committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
examples below.


What is so hard, then?
----------------------

Despite the fact that the configure script takes normal --build and
--host options, that is just the beginning. In practise a lot of work
was necessary to separate tests for "host" and "build" platforms in
the configure script. See the git log for details. And the reasonably
"standard" configure.in is just the top level; when we get down to the
actual makefilery used to build the bits of LibreOffice, it gets much
worse.


Windows
-------

There is some support in LibreOffice already (from OpenOffice.org) for
Tor Lillqvist's avatar
Tor Lillqvist committed
49 50
building it locally on Windows with the GNU tool-chain
(MinGW). Apparently, that work has never attempted cross-compilation.
Tor Lillqvist's avatar
Tor Lillqvist committed
51 52

This OOo-originated MinGW support attempts to support both running
Tor Lillqvist's avatar
Tor Lillqvist committed
53
Cygwin gcc in its -mno-cygwin mode, and a native MinGW compiler. The
Tor Lillqvist's avatar
Tor Lillqvist committed
54
-mno-cygwin mechanism in the Cygwin gcc is rapidly being obsoleted, if
Tor Lillqvist's avatar
Tor Lillqvist committed
55 56
it isn't already, and we have not attempted to try to keep it working;
in fact we have activly cleaned out mechanisms related to this. Ditto
Tor Lillqvist's avatar
Tor Lillqvist committed
57 58 59
for native MinGW. If one compiles natively on Windows, just use
Microsoft's compiler. OOo/LO has been built for Windows all the time
using that.
60

Tor Lillqvist's avatar
Tor Lillqvist committed
61
The only case where it makes sense to use MinGW is for
62 63 64
cross-compilation. There is just too much crack on Windows anyway, and
it is a semi-miracle (well, make that the result of years of work)
that the MSVC build under Cygwin works as nicely as it does.
Tor Lillqvist's avatar
Tor Lillqvist committed
65 66

MinGW is available as cross-build toolchains pre-packaged in more or
Tor Lillqvist's avatar
Tor Lillqvist committed
67 68 69
less official packages for many Linux distros including Debian,
Fedora, openSUSE and SLE. For instance the mingw32 packages in the
Open Build Service, running on openSUSE:
70 71 72

http://download.opensuse.org/repositories/windows:/mingw:/win32/

73 74 75 76 77 78
For example, you can install it like this:

zypper ar http://download.opensuse.org/repositories/windows:/mingw:/win32/<your_os>/windows:mingw:win32.repo

where <your_os> is one of SLE_11, SLE_11_SP1, openSUSE_11.3, openSUSE_11.4 or
openSUSE_Factory.
79

80
zypper in mingw32-cross-gcc mingw32-cross-gcc-c++ mingw32-python-devel \
81
    mingw32-python \
82 83 84
    mingw32-libexpat-devel mingw32-libexpat mingw32-boost-devel \
    mingw32-libhyphen-devel mingw32-libhyphen mingw32-hyphen-en \
    mingw32-liblpsolve mingw32-liblpsolve-devel \
85 86
    mingw32-libxml2-devel mingw32-libxslt-devel mingw32-libicu \
    mingw32-libicu-devel mingw32-libgraphite2 mingw32-libgraphite2-devel \
87
    mingw32-libcairo2 mingw32-cairo-devel mingw32-librsvg mingw32-librsvg-devel \
88
    mingw32-hunspell mingw32-hunspell-devel mingw32-libcurl \
89
    mingw32-libcurl-devel mingw32-libneon mingw32-libneon-devel \
90 91
    mingw32-libopenssl mingw32-libopenssl-devel mingw32-libexttextcat \
    mingw32-libexttextcat-devel mingw32-libdb mingw32-libdb-devel \
92 93 94
    mingw32-cross-pkg-config mingw32-pkg-config mingw32-libcppunit \
    mingw32-libcppunit-devel mingw32-libredland mingw32-libredland-devel \
    mingw32-libmythes mingw32-libmythes-devel
95

96 97 98 99 100 101 102 103 104 105
You also need wine, ideally:

zypper ar http://download.opensuse.org/repositories/Emulators:/Wine/<your_os>/Emulators:Wine.repo

zypper in wine wine-devel wine-devel-32bit

And in order to be able to use 'winegcc -m32', also

zypper in glibc-devel-32bit gcc-32bit

106 107
There might be more that are missing, please read carefully what autogen.sh
tells you, and either remove one of the --with-system-*, or install the
108 109 110
missing dependency.

It also looks like graphite2.pc needs tweaking in order to work right; but
Tor Lillqvist's avatar
Tor Lillqvist committed
111
that's likely to be fixed in the openSUSE project.
Tor Lillqvist's avatar
Tor Lillqvist committed
112 113

It is somewhat unclear how well thought-out the conditionals and code
114
for MinGW inside the OOo-originated code in LibreOffice actually
Tor Lillqvist's avatar
Tor Lillqvist committed
115 116
are. It often seems a bit randomish, with copy-pasting having been
preferred to factoring out differences.
Tor Lillqvist's avatar
Tor Lillqvist committed
117

118 119 120
Most of the configuration settings are maintained in the
distro-configs/LibreOfficeMinGW.conf file, so in your autogen.lastrun,
you can use:
121 122 123 124 125 126 127

CC=ccache i686-w64-mingw32-gcc
CXX=ccache i686-w64-mingw32-g++
CC_FOR_BUILD=ccache gcc
CXX_FOR_BUILD=ccache g++
--with-distro=LibreOfficeMinGW

128 129
Alternatively, you can use something like the following; but the
preferred way is to keep the LibreOfficeMinGW.conf file up-to-date.
Tor Lillqvist's avatar
Tor Lillqvist committed
130 131 132 133 134 135 136 137

CC=ccache i686-w64-mingw32-gcc
CXX=ccache i686-w64-mingw32-g++
CC_FOR_BUILD=ccache gcc
CXX_FOR_BUILD=ccache g++
--build=x86_64-unknown-linux-gnu
--host=i686-w64-mingw32
--with-distro=LibreOfficeWin32
138
--disable-activex
139
--disable-binfilter
Tor Lillqvist's avatar
Tor Lillqvist committed
140
--disable-build-mozilla
141
--disable-directx
Tor Lillqvist's avatar
Tor Lillqvist committed
142 143 144 145 146 147 148 149 150 151
--disable-ext-nlpsolver
--disable-ext-pdfimport
--disable-ext-presenter-console
--disable-ext-presenter-minimizer
--disable-ext-report-builder
--disable-ext-scripting-beanshell
--disable-ext-scripting-javascript
--disable-ext-wiki-publisher
--disable-ext-wiki-publisher
--disable-mozilla
152
--disable-nss-module
Tor Lillqvist's avatar
Tor Lillqvist committed
153
--disable-zenity
154
--enable-python=system
Tor Lillqvist's avatar
Tor Lillqvist committed
155 156
--with-system-altlinuxhyph
--with-system-boost
157
--with-system-cairo
158
--with-system-cppunit
Tor Lillqvist's avatar
Tor Lillqvist committed
159 160 161
--with-system-curl
--with-system-db
--with-system-expat
162
--with-system-gettext
Tor Lillqvist's avatar
Tor Lillqvist committed
163 164
--with-system-hunspell
--with-system-icu
165
--with-system-libpng
Tor Lillqvist's avatar
Tor Lillqvist committed
166 167
--with-system-libwpd
--with-system-libwpg
168
--with-system-libwps
Tor Lillqvist's avatar
Tor Lillqvist committed
169
--with-system-libxml
170
--with-system-lpsolve
Tor Lillqvist's avatar
Tor Lillqvist committed
171
--with-system-mythes
172 173 174
--with-system-neon
--with-system-openssl
--with-system-redland
Tor Lillqvist's avatar
Tor Lillqvist committed
175
--with-vendor=no
176 177 178
--without-help
--without-helppack-integration
--without-myspell-dicts
Tor Lillqvist's avatar
Tor Lillqvist committed
179

180 181
Once you have compiled it, you may want to try to run it, for instance
using Wine:
182

183
$ cd /tmp
184 185
$ tar xf <your-build-dir>/instsetoo_native/wntgcci.pro/LibreOffice_Dev/archive/install/en-US/LibO-Dev_3.6.0alpha0_Win_x86_install-arc_en-US.tar.gz
$ cd LibO-Dev_3.6.0alpha0_Win_x86_install-arc_en-US/LOdev\ 3.6/program
186 187
$ wine soffice.exe

188 189 190
NB. it is important to unpack somewhere low in the hierarchy structure (like
in /tmp as advised above), otherwise you'll get BerkeleyDB errors on startup.

191 192 193
And if you are brave enough, you can even debug it.  First you have to add the
URE dll's to the wine's PATH using 'wine regedit' - see
http://www.winehq.org/docs/wineusr-guide/environment-variables, and add
194
Z:\tmp\LibO-Dev_3.6.0alpha0_Win_x86_install-arc_en-US\LOdev 3.6\URE\bin
195
to "Path" in My Computer->HKEY_CURRENT_USER->Environment.
196 197 198 199

Then run linkoo, so that when you rebuild something, you can directly see the
changes the next time you run it:

200
solenv/bin/linkoo '/tmp/LibO-Dev_3.6.0alpha0_Win_x86_install-arc_en-US/LOdev 3.6' <your_clone_dir>
201 202 203 204 205 206 207 208

And start debugging:

$ winedbg soffice.bin

Would be great to be able to use winedbg --gdb, but it was crashing here :-( -
but maybe you'll be more lucky.

209 210 211 212 213 214 215 216 217
Tricks of some use with winedbg:
--------------------------------

To examine OUStrings, you might want to use the following trick (prints 50
unicode characters of rLibName OUString - the +10 is where the buffer starts):

Wine-dbg>x /50u rLibName->pData+10
0x0909b6c8: vnd.sun.star.expand:$LO_LIB_DIR/abplo.dll

218 219
TODO:

220 221 222 223 224 225
- make the debugging more convenient on (native) Windows
  - check possibilities like WinGDB - http://www.wingdb.com/
  - or find / write a MSVS / WinDBG extension that can read MinGW debugging
    symbols natively; more info
    http://windbg.info/forum/12-symbol-and-source-files-/21-debugging-mingwgcc-built-dll-in-visual-studio.html

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
- installation
  - so far the make_installer.pl calls makecab.exe, uuidgen.exe, and
    others; would be best to avoid that if at all possible (using a free
    cab implementation, part of Wine or something)
  - MSI generation
  - if at all possible, the make dev-install installation (with links
    back to the build) should be done so that it would be directly
    executable via wine after doing make dev-install :-)

- runtime
  - no idea if the entire thing works after the installation at all; I
    suppose there will be runtime problems to look at too

- cleanup
  - enable & fix pieces that are currently disabled
    - --without-myspell-dicts
    - --disable-directx
    - --disable-activex
    - --disable-mozilla
  - much of the stuff currently relies on --with-system-*, and
    consequently on the mingw32-* openSUSE packages; might be good to be
    able to build with as few dependencies as possible - but that is low
Tor Lillqvist's avatar
Tor Lillqvist committed
248
    prio
249 250 251 252 253

- profiling
  - when all the above is sorted out, we should look at the speed of
    this vs. the speed of the MSVC version

Tor Lillqvist's avatar
Tor Lillqvist committed
254 255 256 257 258 259 260

iOS
---

iOS is the operating system of Apple's mobile devices. Clearly for a
device like the iPad it would be totally unacceptable to run a normal
LibreOffice application with a overlapping windows and mouse-oriented
261 262 263 264 265 266 267 268 269
GUI widgets. No work has been done (at least publicly) by others to
design a touch GUI for LibreOffice, so that is something that needs to
be done.

Obviously it will make sense to use only a part of LibreOffice's code
for iOS. Most likely lots of the GUI-oriented code should be left out,
and some iOS app(s) that eventually wants to use the remaining bits
will handle all its GUI in a platform-dependent manner. How well it
will be possible to do such a split remains to be seen.
Tor Lillqvist's avatar
Tor Lillqvist committed
270 271 272

Technically, one important special aspect of iOS is that apps are not
allowed to load own dynamic libraries. (System libraries are used in
Tor Lillqvist's avatar
Tor Lillqvist committed
273
the form of dynamic libraries, just like on Mac OS X, of which iOS is a
Tor Lillqvist's avatar
Tor Lillqvist committed
274 275
variant.) So all the libraries in LibreOffice that normally are shared
libraries (DLLs on Windows, shared objects (.so) on Linux, dynamic
Tor Lillqvist's avatar
Tor Lillqvist committed
276
libraries on Mac OS X (.dylib)) need to be built as static archives
Tor Lillqvist's avatar
Tor Lillqvist committed
277 278 279 280 281
instead. Obviously this will have some interesting consequences for
how UNO is implemented and used. None of that has been spared much
thought yet.

The Apple tool-chain for iOS cross-building is available only for
Tor Lillqvist's avatar
Tor Lillqvist committed
282
Mac OS X.
Tor Lillqvist's avatar
Tor Lillqvist committed
283

284 285
Here is an autogen.lastrun for iOS (device) using Xcode 4.3 and clang,
and Xcode 3 for the build platform parts:
286 287
CXX=ccache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk
CC=ccache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk
Tor Lillqvist's avatar
Tor Lillqvist committed
288 289
CC_FOR_BUILD=ccache /Xcode3/usr/bin/gcc-4.0 -mmacosx-version-min=10.4
CXX_FOR_BUILD=ccache /Xcode3/usr/bin/g++-4.0 -mmacosx-version-min=10.4
Tor Lillqvist's avatar
Tor Lillqvist committed
290
--with-distro=LibreOfficeiOS
Tor Lillqvist's avatar
Tor Lillqvist committed
291 292 293
--without-help
--without-helppack-integration
--without-myspell-dicts
Tor Lillqvist's avatar
Tor Lillqvist committed
294

295
For the iOS simulator, using Xcode 4.4.1 and clang both for the host and
296 297
build platform:

298 299
CXX=ccache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk -mmacosx-version-min=10.6
CC=ccache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk -mmacosx-version-min=10.6
300
--enable-werror
301
--with-build-platform-configure-options=--with-macosx-version-min-required=10.6
302 303 304 305 306 307 308 309 310
--with-distro=LibreOfficeiOS
--without-help
--without-helppack-integration
--without-myspell-dicts

Note that you will have to install autoconf and automake yourself
before running autogen.sh. They are no longer included in Xcode 4.3
(not even in the add-on "command line tools").

311 312 313 314
The -mmacosx-version-min=10.6 is necessary when building for the iOS
simulator to avoid clang replacing simple calls to fprintf with calls
to fwrite$UNIX2003 which Xcode then warns that doesn't exist on iOS.

315

Tor Lillqvist's avatar
Tor Lillqvist committed
316 317 318
Android
-------

319 320 321
From a technical point of view the core Android OS is Linux, but
everything else is different. Unlike iOS, an Android app can use
shared objects just fine, so that aspect of UNO doesn't need special
322 323 324 325
handling. Except that there is a silly low limit in the Android
dynamic linker on the number of libraries you can dlopen. Note that
this is a limitation of user-level code, not the kernel. Here are
various ways around this problem that are being examined.
Tor Lillqvist's avatar
Tor Lillqvist committed
326 327 328

As for the GUI, the same holds as said above for iOS.

Tor Lillqvist's avatar
Tor Lillqvist committed
329
Android cross-compilation work has been done on Linux (openSUSE in
Tor Lillqvist's avatar
Tor Lillqvist committed
330
particular) and Mac OS X. The Android cross-buld tool-chain (the
331 332 333
"Native Development Kit", or NDK) is available for Linux and Mac OS
X. Sure, for Windows, too, but trying to cross-compile LO from Windows
will probably drive you insane.
Tor Lillqvist's avatar
Tor Lillqvist committed
334

335 336
Here is an autogen.lastrun for Android, when cross-compiling from Mac
OS X 10.8 with Xcode 4.4.1:
337

338
--disable-zenity
339
--enable-debug
340
--enable-werror
341 342 343
--with-android-ndk=/Users/tml/android-ndk-r8b
--with-android-ndk-toolchain-version=4.6
--with-android-sdk=/Users/tml/android-sdk-macosx
344
--with-distro=LibreOfficeAndroid
345 346 347
--without-doxygen
--without-helppack-integration
--without-myspell-dicts
348

Tor Lillqvist's avatar
Tor Lillqvist committed
349
And here is an autogen.lastrun for Android when cross-compiling from Linux:
350

Tor Lillqvist's avatar
Tor Lillqvist committed
351 352
CC_FOR_BUILD=ccache gcc
CXX_FOR_BUILD=ccache g++
Tor Lillqvist's avatar
Tor Lillqvist committed
353
--with-android-ndk=/home/tml/android-ndk-r7b
354 355
--with-android-sdk=/home/tml/android-sdk-linux_x86
--with-ant-home=/opt/apache-ant-1.8.2
Tor Lillqvist's avatar
Tor Lillqvist committed
356 357
--build=x86_64-unknown-linux-gnu
--disable-zenity
358
--disable-python
359
--with-distro=LibreOfficeAndroid
360 361
--with-num-cpus=1
--with-max-jobs=1
362 363 364 365 366 367 368 369 370 371 372 373 374 375

And here is an autogen.lastrun for Android when cross-compiling to x86 from Linux:

CC_FOR_BUILD=ccache gcc
CXX_FOR_BUILD=ccache g++
--with-android-ndk=/opt/libreoffice/android-ndk-r8b
--with-android-ndk-toolchain-version=4.6
--with-android-sdk=/opt/libreoffice/android-sdk-linux
--build=i586-suse-linux
--enable-ccache
--disable-zenity
--with-distro=LibreOfficeAndroidX86
--with-num-cpus=6
--with-max-jobs=6
Tor Lillqvist's avatar
Tor Lillqvist committed
376

Tor Lillqvist's avatar
Tor Lillqvist committed
377 378
There is no interactive end-user "app" you could run yet that would
use LibreOffice code, but you can build some non-interactive unit
Tor Lillqvist's avatar
Tor Lillqvist committed
379 380 381 382
tests and run them on the emulator (or, presumably, on a device,
although that hasn't been tested as nobody with an actual Android
device has worked on it yet...)  The simple unit tests will succeed,
the complex one still fails.
Tor Lillqvist's avatar
Tor Lillqvist committed
383 384 385 386 387 388 389 390

These unit tests *are* proper "apps" from Android'd point of view, but
they don't have any GUI and thus don't take part in the normal Android
message passing and Android thinks they are stuck and offers to kill
them...

The activity used for these apps is in android/Bootstrap. See
README.Android.
391

392 393 394 395 396 397 398
To build the complex unit test for Calc functionality which invokes the
"ucalc" unit test code from sc, cd to android/qa/sc and run a "make". The
Makefile here is completely manually written, this stuff is so experimental it
doesn't make sense yet to try to integrate with the normal gbuild mechanism.

Note that lately (as of May 2012) the android/qa/sc test has not been
maintained, and might not build cleanly.
399

Tor Lillqvist's avatar
Tor Lillqvist committed
400 401
Then to run the unit test, do "make install" followed by "make
run". You most likely want to have an "adb logcat" running in another
402 403 404 405 406 407
window.

To debug, do manually what "make run" would do, adding args "-e lo-main-delay
20" to the command line, and when the app has started, run
ndk-gdb. Unfortunately the gdb in NDK r7 and r8 is a bit broken, you can use
the one in a NDK build with newer versions of gcc and gdb from
408 409
http://code.google.com/p/mingw-and-ndk/ instead.

Tor Lillqvist's avatar
Tor Lillqvist committed
410 411 412 413 414
Running strace on the unit test in progress is often useful to find
out what is going wrong. Pass something like -e lo-strace '-tt -f -e
trace=file,process,network -o /system/sc/strace.out' to the am start
command line.

415 416 417
The Android test app which has been exercised lately is in
android/experimental/DocumentLoader.

Tor Lillqvist's avatar
Tor Lillqvist committed
418

419 420 421 422 423 424
PowerPC Mac OS X
----------------

Cross-compiling for PowerPC Mac OS X from Intel Mac OS X will probably
be easy. The APIs available should after all be closely identical to
those on Intel Mac OS X, and LibreOffice builds fine natively on
Tor Lillqvist's avatar
Tor Lillqvist committed
425 426
PowerPC Mac already. Only a little experimenting has been done with
it. An autogen.lastrun looks like this:
427 428 429 430 431 432 433 434 435

CC=ccache /Xcode3/usr/bin/gcc-4.0 -arch ppc
CXX=ccache /Xcode3/usr/bin/g++-4.0 -arch ppc
CC_FOR_BUILD=ccache /Xcode3/usr/bin/gcc-4.0
CXX_FOR_BUILD=ccache /Xcode3/usr/bin/g++-4.0
--build=i386-apple-darwin10.7.0
--host=powerpc-apple-darwin10
--disable-mozilla
--disable-build-mozilla