--
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
-per-process heap (it's only a matter of time before some process
requires more heap than can fit in a 32-bit system).
-total physical RAM (our current standard engineering configuration at
Google uses 12GB or RAM and we're not entirely convinced that's enough
any more for the Android version we're working on).
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.
Is there then any publically available standard engineering distro at Google
which just builds Android without any additional intervention? :) Do
not hesitate
to tell the name and the version :)
--
Max
JBQ
Hence we should use Ubuntu 10.04 LTS for amd64, right?
I'm asking because "Setting up your machine" at
http://source.android.com tells us about Ubuntu 6.06 and notices that
64-bit version is not tested and requires 32-bit build environment.
Nobody wants to iterate through every possible linux setup.
--
Max
JBQ
Al.
--
* Looking for Android Apps? - Try http://andappstore.com/ *
======
Funky Android Limited is registered in England & Wales with the company number 6741909.
The views expressed in this email are those of the author and not necessarily those of Funky Android Limited, it's associates, or it's subsidiaries.
It's vice-verse: export PATH=~/jdk1.6.0_21/bin:~/bin:$PATH
What does javac -version print?
You might also need to set JAVA_HOME to something like
/usr/java/jdk1.6.0_21.
Cheers,
Cristian
Where do I get glibc-devel for Slackware 13.1 x64? Or what is the problem?
-----Original Message-----
From: android-...@googlegroups.com
[mailto:android-...@googlegroups.com] On Behalf Of Cristian Ciupitu
Sent: Monday, October 04, 2010 10:51 AM
To: android-...@googlegroups.com
Subject: Re: [android-building] Re: Cannot compile Android Source - Error
with libclearsilver-jni
Cheers,
Cristian
--
I know what's wrong because I had the same problem. You have to
install gcc-multilib and g++-multilib packages.
You get this error because you don't have gcc for 32-bit x86
installed. I'm not sure why does it need it on a 64-bit system,
but to the moment this is so.
--
Max
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
>
--
-----Original Message-----
From: android-...@googlegroups.com
[mailto:android-...@googlegroups.com] On Behalf Of Jean-Baptiste Queru
Sent: Monday, October 04, 2010 12:38 PM
To: android-...@googlegroups.com
Subject: Re: [android-building] Re: Cannot compile Android Source - Error
with libclearsilver-jni
I've managed to build it with pure Debian lenny amd64 with OpenJDK-6.
If you like KDE 3 more than KDE 4, may be it is also your choise. But in this
case if you plan to develop with Eclipse, you'll have to install it
from sources.
I use Emacs and find the above setup perfect.
--
Max
--
Max
Looks at the diff’s where it adds this…
+# This forces a 64-bit build for Java6
+ifneq ($(filter 1.6%,$(java_version)),)
+ LOCAL_CFLAGS += -m64
+ LOCAL_LDFLAGS += -m64
+endif
+
And remove them. Haven’t pull in a while, but I bet they still have this in there.
From: android-...@googlegroups.com
[mailto:android-...@googlegroups.com] On Behalf Of
Lead Tech
Sent: Tuesday, October 05, 2010 6:23 AM
To: android-...@googlegroups.com
Subject: Re: [android-building] Re: Cannot compile Android Source - Error with libclearsilver-jni
kinesis@hack:~/mydroid$ make
# apt-get install lib32z1 lib32z1-dev
--
Max
host C: adb <= system/core/adb/fdevent.c
host Executable: adb
(out/host/linux-x86/obj/EXECUTABLES/adb_intermediates/adb)
/usr/bin/ld: skipping incompatible
/usr/lib/gcc/x86_64-linux-gnu/4.4.3/../../../libncurses.so when searching
for -lncurses
/usr/bin/ld: skipping incompatible
/usr/lib/gcc/x86_64-linux-gnu/4.4.3/../../../libncurses.a when searching for
-lncurses
/usr/bin/ld: skipping incompatible /usr/lib/libncurses.so when searching for
-lncurses
/usr/bin/ld: skipping incompatible /usr/lib/libncurses.a when searching for
-lncurses
/usr/bin/ld: cannot find -lncurses
collect2: ld returned 1 exit status
make: *** [out/host/linux-x86/obj/EXECUTABLES/adb_intermediates/adb] Error 1
kinesis@hack:~/mydroid$
-----Original Message-----
From: android-...@googlegroups.com
[mailto:android-...@googlegroups.com] On Behalf Of Max Dmitrichenko
Sent: Tuesday, October 05, 2010 9:15 AM
To: android-...@googlegroups.com
Subject: Re: [android-building] Re: Cannot compile Android Source - Error
with libclearsilver-jni
--
Max
--
--
Max
# apt-get install lib32ncurses5-dev
And so on... if you get linking error which informs you that ld have
found an appropriate 64-bit library
but it was skipped due to incompatibility, that means you have to
install a 32-bit library. A rule of a
thumb is to use `apt-get install lib32<library-name>-dev`.
--
Max
2010/10/6 Samuel <droi...@gmail.com>:
> You may need run below commands to create some links. The build
> makefile find the lib named exactly libz.so.
> But in my env(ubuntu-10.04.1 desktop amd64 on Thinkpad T61), There is no
> this file or link. I also created a link for libstdc++.so lib.
>
> sudo ln -s /usr/lib32/libstdc++.so.6 /usr/lib32/libstdc++.so
> sudo ln -s /usr/lib32/libz.so.1 /usr/lib32/libz.so
I've managed to build it without such hacks. But I use Debian Lenny:
may be it creates these links
during package installation automagicaly.
--
Max
-----Original Message-----
From: android-...@googlegroups.com
[mailto:android-...@googlegroups.com] On Behalf Of Max Dmitrichenko
Sent: Wednesday, October 06, 2010 8:10 AM
To: android-...@googlegroups.com
Subject: Re: [android-building] Re: Cannot compile Android Source - Error
with libclearsilver-jni
# apt-get install lib32ncurses5-dev
--
Max
--
http://pastie.org/private/9cqap3ggjkx0fzwladfa
Can you help?
-----Original Message-----
From: android-...@googlegroups.com
[mailto:android-...@googlegroups.com] On Behalf Of Max Dmitrichenko
Sent: Wednesday, October 06, 2010 8:13 AM
To: android-...@googlegroups.com
Subject: Re: [android-building] Re: Cannot compile Android Source - Error
with libclearsilver-jni
Samuel,
--
Max
--