Ted
在 2010/7/6 上午9:47 時, Yichuan 寫到:
> --
> 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
Loks like LibZip is missing in your system. To build android, you need
to download few additional tools/packages, please check the "setting
up your machine" section in the link:
http://source.android.com/source/download.html
--
Bharathi Subramanian
There is a patch that forces 64bit builds if using Java6 on 32bit systems.
+# This forces a 64-bit build for Java6
+ifneq ($(filter 1.6%,$(java_version)),)
+ LOCAL_CFLAGS += -m64
+ LOCAL_LDFLAGS += -m64
+endif
Comment these lines out wherever you see them in the .mk files and you will be OK.
Brian