sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 1 | |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 2 | How to cross-compile for Android. These notes were last updated on |
sewardj | 0a64a7a | 2012-02-17 15:13:55 +0000 | [diff] [blame] | 3 | 17 Feb 2012, for Valgrind SVN revision 12390/2257. |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 4 | |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 5 | This is known to work at least for : |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 6 | ARM: |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 7 | Android 4.0.3 running on a (rooted, AOSP build) Nexus S. |
| 8 | Android 4.0.3 running on Motorola Xoom. |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 9 | Android 4.0.3 running on android arm emulator. |
philippe | 77c1185 | 2012-07-18 23:01:02 +0000 | [diff] [blame] | 10 | Android 4.1 running on android emulator. |
sewardj | ca456c7 | 2012-08-05 13:44:15 +0000 | [diff] [blame] | 11 | Android 2.3.4 on Nexus S worked at some time in the past. |
philippe | 77c1185 | 2012-07-18 23:01:02 +0000 | [diff] [blame] | 12 | |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 13 | x86: |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 14 | Android 4.0.3 running on android x86 emulator. |
| 15 | |
sewardj | ca456c7 | 2012-08-05 13:44:15 +0000 | [diff] [blame] | 16 | On android-arm, GDBserver might insert breaks at wrong addresses. |
philippe | 77c1185 | 2012-07-18 23:01:02 +0000 | [diff] [blame] | 17 | Feedback on this welcome. |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 18 | |
| 19 | Other configurations and toolchains might work, but haven't been tested. |
sewardj | 0a64a7a | 2012-02-17 15:13:55 +0000 | [diff] [blame] | 20 | Feedback is welcome. |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 21 | |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 22 | |
sewardj | 0a64a7a | 2012-02-17 15:13:55 +0000 | [diff] [blame] | 23 | You need the android-ndk-r6 native development kit. r6b and r7 |
| 24 | give a non-completely-working build; see |
| 25 | http://code.google.com/p/android/issues/detail?id=23203 |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 26 | For the android emulator, the versions needed and how to |
| 27 | install them are described in README.android_emulator. |
sewardj | 0a64a7a | 2012-02-17 15:13:55 +0000 | [diff] [blame] | 28 | |
| 29 | Install it somewhere. Doesn't matter where. Then do this: |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 30 | |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 31 | |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 32 | # Modify this (obviously). Note, this "export" command is only done |
| 33 | # so as to reduce the amount of typing required. None of the commands |
| 34 | # below read it as part of their operation. |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 35 | # |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 36 | export NDKROOT=/path/to/android-ndk-r6 |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 37 | |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 38 | |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 39 | # Modify this too. Tell the build system which Android hardware you |
| 40 | # are building for. It needs to know this so it can compile in |
| 41 | # support for the right Android-hw-specific ioctls. (sigh.) As with |
| 42 | # NDKROOT above, this is merely to avoid repeated typing; none of the |
| 43 | # commands read it. |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 44 | # |
sewardj | 1b3a7a4 | 2011-10-26 15:10:49 +0000 | [diff] [blame] | 45 | # Currently the supported values are: nexus_s pandaboard |
| 46 | # So choose one of the below: |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 47 | # |
sewardj | 0a64a7a | 2012-02-17 15:13:55 +0000 | [diff] [blame] | 48 | export HWKIND=nexus_s # Samsung Nexus S; also Xoom (for now) |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 49 | export HWKIND=generic # A generic Android device. eg, Pandaboard |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 50 | export HWKIND=emulator # Android emulator |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 51 | |
| 52 | # Then cd to the root of your Valgrind source tree. |
| 53 | # |
| 54 | cd /path/to/valgrind/source/tree |
| 55 | |
| 56 | |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 57 | # After this point, you don't need to modify anything; just copy and |
| 58 | # paste the commands below. |
| 59 | |
| 60 | |
| 61 | # Set up toolchain paths. |
| 62 | # |
sewardj | ca456c7 | 2012-08-05 13:44:15 +0000 | [diff] [blame] | 63 | # For ARM |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 64 | export AR=$NDKROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-ar |
| 65 | export LD=$NDKROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-ld |
| 66 | export CC=$NDKROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-gcc |
| 67 | |
sewardj | ca456c7 | 2012-08-05 13:44:15 +0000 | [diff] [blame] | 68 | # For x86 |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 69 | export AR=$NDKROOT/toolchains/x86-4.4.3/prebuilt/linux-x86/bin/i686-android-linux-ar |
| 70 | export LD=$NDKROOT/toolchains/x86-4.4.3/prebuilt/linux-x86/bin/i686-android-linux-ld |
| 71 | export CC=$NDKROOT/toolchains/x86-4.4.3/prebuilt/linux-x86/bin/i686-android-linux-gcc |
| 72 | |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 73 | |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 74 | # Do configuration stuff. Don't mess with the --prefix in the |
| 75 | # configure command below, even if you think it's wrong. |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 76 | # You may need to set the --with-tmpdir path to something |
sewardj | 1b3a7a4 | 2011-10-26 15:10:49 +0000 | [diff] [blame] | 77 | # different if /sdcard doesn't work on the device -- this is |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 78 | # a known cause of difficulties. |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 79 | |
philippe | 7d9b41b | 2012-09-11 19:53:01 +0000 | [diff] [blame] | 80 | # The below re-generates configure, Makefiles, ... |
| 81 | # This is not needed if you start from a release tarball. |
| 82 | # (in any case, the release tarball does not contain the autogen.sh file). |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 83 | ./autogen.sh |
| 84 | |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 85 | # for ARM |
sewardj | fb9c962 | 2011-09-27 11:54:01 +0000 | [diff] [blame] | 86 | CPPFLAGS="--sysroot=$NDKROOT/platforms/android-3/arch-arm -DANDROID_HARDWARE_$HWKIND" \ |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 87 | CFLAGS="--sysroot=$NDKROOT/platforms/android-3/arch-arm" \ |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 88 | ./configure --prefix=/data/local/Inst \ |
| 89 | --host=armv7-unknown-linux --target=armv7-unknown-linux \ |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 90 | --with-tmpdir=/sdcard |
philippe | eeb0733 | 2012-07-04 21:59:29 +0000 | [diff] [blame] | 91 | # note: on android emulator, android-14 platform was also tested and works. |
| 92 | # It is not clear what this platform nr really is. |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 93 | |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 94 | # for x86 |
| 95 | CPPFLAGS="--sysroot=$NDKROOT/platforms/android-9/arch-x86 -DANDROID_HARDWARE_$HWKIND" \ |
| 96 | CFLAGS="--sysroot=$NDKROOT/platforms/android-9/arch-x86 -fno-pic" \ |
| 97 | ./configure --prefix=/data/local/Inst \ |
| 98 | --host=i686-android-linux --target=i686-android-linux \ |
| 99 | --with-tmpdir=/sdcard |
| 100 | |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 101 | # At the end of the configure run, a few lines of details |
| 102 | # are printed. Make sure that you see these two lines: |
sewardj | ca456c7 | 2012-08-05 13:44:15 +0000 | [diff] [blame] | 103 | # |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 104 | # For ARM: |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 105 | # Platform variant: android |
| 106 | # Primary -DVGPV string: -DVGPV_arm_linux_android=1 |
sewardj | ca456c7 | 2012-08-05 13:44:15 +0000 | [diff] [blame] | 107 | # |
philippe | 5d5dd8e | 2012-08-05 00:08:25 +0000 | [diff] [blame] | 108 | # For x86: |
| 109 | # Platform variant: android |
| 110 | # Primary -DVGPV string: -DVGPV_x86_linux_android=1 |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 111 | # |
| 112 | # If you see anything else at this point, something is wrong, and |
| 113 | # either the build will fail, or will succeed but you'll get something |
| 114 | # which won't work. |
| 115 | |
| 116 | |
| 117 | # Build, and park the install tree in `pwd`/Inst |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 118 | # |
| 119 | make -j2 |
| 120 | make -j2 install DESTDIR=`pwd`/Inst |
sewardj | 37ed97b | 2011-07-12 13:34:31 +0000 | [diff] [blame] | 121 | |
| 122 | |
| 123 | # To get the install tree onto the device: |
| 124 | # (I don't know why it's not "adb push Inst /data/local", but this |
| 125 | # formulation does appear to put the result in /data/local/Inst.) |
| 126 | # |
| 127 | adb push Inst / |
| 128 | |
| 129 | # To run (on the device) |
sewardj | a0b4dbc | 2011-09-10 11:28:51 +0000 | [diff] [blame] | 130 | /data/local/Inst/bin/valgrind [the usual args etc] |
| 131 | |
| 132 | |
| 133 | # Once you're up and running, a handy modify-V-rebuild-reinstall |
| 134 | # command line (on the host, of course) is |
| 135 | # |
| 136 | mq -j2 && mq -j2 install DESTDIR=`pwd`/Inst && adb push Inst / |
| 137 | # |
| 138 | # where 'mq' is an alias for 'make --quiet'. |
| 139 | |
| 140 | |
| 141 | # One common cause of runs failing at startup is the inability of |
| 142 | # Valgrind to find a suitable temporary directory. On the device, |
| 143 | # there doesn't seem to be any one location which we always have |
| 144 | # permission to write to. The instructions above use /sdcard. If |
| 145 | # that doesn't work for you, and you're Valgrinding one specific |
| 146 | # application which is already installed, you could try using its |
| 147 | # temporary directory, in /data/data, for example |
| 148 | # /data/data/org.mozilla.firefox_beta. |
| 149 | # |
| 150 | # Using /system/bin/logcat on the device is helpful for diagnosing |
| 151 | # these kinds of problems. |