blob: a9df5c30b35a5f8415c9a9524224150b0474b8b1 [file] [log] [blame] [view]
Jean-Baptiste Queru4c07af92011-06-22 16:41:01 -07001<!--
2 Copyright 2010 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17# Known Issues #
18
19Even with our best care, small problems sometimes slip in. This page keeps
20track of the known issues around using the Android source code.
21
Jean-Baptiste Querudc6e9ca2012-01-05 08:06:08 -080022## Missing CTS Native XML Generator ##
23
24**Symptom**: On some builds of IceCreamSandwich and later, the following
25warning is printed early during the build:
26`/bin/bash: line 0: cd: cts/tools/cts-native-xml-generator/src/res: No
27such file or directory`
28
29**Cause**: Some makefile references that path, which doesn't exist.
30
31**Fix**: None. This is a harmless warning.
32
Jean-Baptiste Queru4c07af92011-06-22 16:41:01 -070033## Black Gingerbread Emulator ##
34
35**Symptom**: The emulator built directly from the gingerbread branch
36doesn't start and stays stuck on a black screen.
37
38**Cause**: The gingerbread branch uses version R7 of the emulator,
39which doesn't have all the features necessary to run recent versions
40of gingerbread.
41
42**Fix**: Use version R12 of the emulator, and a newer kernel that matches
43those tools. No need to do a clean build.
44
Jean-Baptiste Queru015de9c2012-04-03 08:01:11 -070045 $ repo forall platform/external/qemu -c git checkout aosp/tools_r12
Jean-Baptiste Queru4c07af92011-06-22 16:41:01 -070046 $ make
47 $ emulator -kernel prebuilt/android-arm/kernel/kernel-qemu-armv7
Jean-Baptiste Queru015de9c2012-04-03 08:01:11 -070048
49## Emulator built on MacOS 10.7 Lion doesn't work. ##
50
51**Symptom**: The emulator (any version) built on MacOS 10.7 Lion
52and/or on XCode 4.x doesn't start.
53
54**Cause**: Some change in the development environment causes
55the emulator to be compiled in a way that prevents it from working.
56
57**Fix**: Use an emulator binary from the SDK, which is built on
58MacOS 10.6 with XCode 3 and works on MacOS 10.7.