It looks like you are missing a 32-bit version of the library, and a
package like ia32-libs might fix that.
~cco3
> --
> You received this message because you are subscribed to the "Android Building" mailing list.
> To post to this group, send email to android-...@googlegroups.com
> To unsubscribe from this group, send email to
> android-buildi...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>
I am getting this error:
...
target Java: CtsThemeTestCases
(out/target/common/obj/APPS/CtsThemeTestCases_intermediates/classes)
target Java: CtsUsePermissionDiffCert
(out/target/common/obj/APPS/CtsUsePermissionDiffCert_intermediates/classes)
target Java: CtsUtilTestCases
(out/target/common/obj/APPS/CtsUtilTestCases_intermediates/classes)
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
target R.java/Manifest.java: CtsVerifier
(out/target/common/obj/APPS/CtsVerifier_intermediates/src/R.stamp)
Warning: AndroidManifest.xml already defines versionCode (in
http://schemas.android.com/apk/res/android); using existing value in
manifest.
Warning: AndroidManifest.xml already defines versionName (in
http://schemas.android.com/apk/res/android); using existing value in
manifest.
Warning: AndroidManifest.xml already defines minSdkVersion (in
http://schemas.android.com/apk/res/android); using existing value in
manifest.
target Java: CtsVerifier
(out/target/common/obj/APPS/CtsVerifier_intermediates/classes)
cts/apps/CtsVerifier/src/com/android/cts/verifier/PassFailButtons.java:191:
onCreateDialog(int,android.os.Bundle) in android.app.Activity cannot
implement onCreateDialog(int,android.os.Bundle) in
com.android.cts.verifier.PassFailButtons.PassFailActivity; attempting to
assign weaker access privileges; was public
private static <T extends android.app.Activity & PassFailActivity>
^
1 error
make: ***
[out/target/common/obj/APPS/CtsVerifier_intermediates/classes-full-debug.jar
] Error 41
$
--------------
$ java -version
java version "1.6.0_20"
OpenJDK Runtime Environment (IcedTea6 1.9.9) (6b20-1.9.9-0ubuntu1~10.04.2)
OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode
This java works for building gingerbread. I see in your instructions you
advocate Sun's java. I am guessing you are going to tell me to switch to
that.
Is there a Lunch selection for building for the emulator but not building
the CTS test suite?
-Sam
Can can always hack some makefiles or projects away if you don't want
to build a specific part of the system.
JBQ
> --
> You received this message because you are subscribed to the "Android Building" mailing list.
> To post to this group, send email to android-...@googlegroups.com
> To unsubscribe from this group, send email to
> android-buildi...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>
--
Jean-Baptiste M. "JBQ" Queru
Software Engineer, Android Open-Source Project, Google.
Questions sent directly to me that have no reason for being private
will likely get ignored or forwarded to a public forum with no further
warning.
Does /usr/lib32/libGL.so exist? If not, try symlinking
/usr/lib32/libGL.so to /usr/lib32/libGL.so.1 and let me know if that
fixes anything for you.
~cco3
> You received this message because you are subscribed to the "Android Building" mailing list.
> To post to this group, send email to android-...@googlegroups.com
I had to symlink:
golubovsky@www:/usr/lib32$ ls -lt /usr/lib32 | head
total 36584
lrwxrwxrwx 1 root root 11 2011-11-18 22:14 libX11.so -> libX11.so.
6
lrwxrwxrwx 1 root root 10 2011-11-18 21:48 libGL.so -> libGL.so.1
So maybe it might be mentioned on the "Initializing a build
environment" page as a general recipe:
if the linker complains about skipping incompatible versions of some
shared libraries, but you believe you have them installed, try to
symlink their version-containing names (the shortest ones) into the
same directory where they are located, without version in the name.
Thank you.
On Nov 17, 12:01 pm, Conley Owens <c...@android.com> wrote: