aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL
blob: c9d178a045a3e646940274d161357265985c2186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
This package contains the sources to the Android emulator program.

Supported Development Platforms:
--------------------------------

The Android emulator can be built on the following platforms:

    - Linux 32-bits
    - Linux 64-bits (*only* generates 32-bit emulator binary)
    - Darwin x86
    - Darwin ppc  (experimental only)
    - Windows x86  (through Cygwin only)

Note that development on 64-bit versions of Darwin and Windows is
not supported. The 32-bit emulator binary should run normally on
these platforms though.

The Windows emulator binary is built using the -no-cygwin option
and thus doesn't depend on CYGWIN.DLL being installed on your system.

It is possible to hack the android-configure.sh script to build
a 64-bit emulator binary on Linux. Unfortunately the resulting
program will crash pretty soon during emulation. This problem is
due to the way the emulator works and cannot be easily fixed at
the moment.

Supported Compilers:
--------------------

The Android emulator is a heavy fork of QEMU 0.8.2, and as such,
can only be built properly with a small number of compilers. Moreover,
which compiler can be used depends on your platform.

The following table sums up the compilers that are *known* to produce
correct output:

  Linux x86:              gcc-3.4.6
  Linux x86 and x86_64:   gcc-4.2.3
  Darwin x86:             gcc-4.0.1 (build 5341)
  Darwin ppc:             gcc-3.3   (build 1819)

Use any other compiler at your own risks ! A 'bad binary' usually
results in the VM crashing either immediately or after a few seconds.

Note that on Darwin, the *build* number of your compiler *is* important.
Some builds of gcc-4.0.1 are known to generate bad binaries on Darwin x86,
so your own fails to build an executable that works correctly.
You can find the sources to the required gcc here:


We distribute a file named distrib/build_gcc_qemu_darwin.sh which can be
used as a replacement for the Apple-provided build_gcc.sh that comes with
their gcc distribution.


Building the emulator with the Android build system:
----------------------------------------------------

Ensure that you have properly configured your build by running the
envsetup.sh script and using the appropriate 'lunch' command.

Then type: 

     m emulator

This will rebuild the emulator and place it in an adequate location.
Simply type 'emulator' to start it with the currently built system
image.


Building the emulator without the Android build system:
-------------------------------------------------------

You can also build the emulator as a stand-alone program, by following
these simple steps:

  1/ First, build Android's patched libSDL as a static library,
     this can be done as:

        cd $TOP/external/qemu/distrib/sdl-1.2.15
        ./android-configure --prefix=<PATH>
        make
        make install

    Where $TOP is the path of your open-source Android source tree, and
    where <PATH> is any path of your chosing where the library will
    be copied to by the 'make install' command. For example, you
    can use $HOME/android-sdl

  2/ Configure the emulator with android-configure.sh, as in:

        cd $TOP/external/qemu
        ./android-configure.sh --sdl-config=<PATH>/bin/sdl-config
        make

     Where <PATH> is the same path you used with the --prefix option
     when building the SDL library

The emulator binary is located into objs/emulator, you can strip it and
copy it to any location of your choosing.


Creating an emulator source distribution package:
-------------------------------------------------

We provide a script to build a tar.gz package file that contains all the
sources required to rebuild the emulator (i.e. it includes the patched SDL
sources as well) plus a handy script to automate the rebuild.

Simply invoke:

    cd $TOP/tools/qemu
    distrib/make-distrib.sh

This script will create a tar.gz file under /tmp/android-package and will
print its location when it completes.

To rebuild the corresponding emulator, un-tar-gz the package, and run
the 'rebuild.sh' script.