I want to use Android ADB tool on ARM platform. One of the commands in the build script is:

arm-eabi-g++
-I build/libs/host/include/host
-I build/libs/host/include
-I build/libs/host
-I out/host/linux-arm/obj/STATIC_LIBRARIES/libhost_intermediates 
-I dalvik/libnativehelper/include/nativehelper
-I system/core/include
-I hardware/libhardware/include
-I hardware/libhardware_legacy/include
-I hardware/ril/include
-I dalvik/libnativehelper/include
-I frameworks/base/include
-I frameworks/base/opengl/include
-I frameworks/base/native/include
-I external/skia/include
-I tools/include
-I out/host/linux-arm/obj/include
-I prebuilt/ndk/android-ndk-r5b/platforms/android-9/arch-arm/usr/include
-c -fno-exceptions -Wno-multichar -fPIC
-include system/core/include/arch/linux-arm/AndroidConfig.h
-D_FORTIFY_SOURCE=0
-DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith -O2 -g -fno-strict-aliasing -DNDEBUG -UDEBUG
-DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith -Wsign-promo -DNDEBUG -UDEBUG
-MD -o out/host/linux-arm/obj/STATIC_LIBRARIES/libhost_intermediates/pseudolocalize.o   
build/libs/host/pseudolocalize.cpp

I have made sure I have the latest ndk-r5b installed, which is supposed to resolve the STL problem. However, I am still getting the following error:

In file included from build/libs/host/pseudolocalize.cpp:1:
build/libs/host/include/host/pseudolocalize.h:4:18: error: string: No such file or directory
In file included from build/libs/host/pseudolocalize.cpp:1:
build/libs/host/include/host/pseudolocalize.h:6: error: 'string' in namespace 'std' does not name a type
build/libs/host/pseudolocalize.cpp: In function 'const char* pseudolocalize_char(char)':
build/libs/host/pseudolocalize.cpp:61: error: 'NULL' was not declared in this scope
build/libs/host/pseudolocalize.cpp: At global scope:
build/libs/host/pseudolocalize.cpp:71: error: 'string' does not name a type

Does anyone know how to fix this problem? BTW the building of the intel version of adb works fine by following this link:

http://lackingrhoticity.blogspot.com/2010/02/how-to-build-adb-android-debugger.html

link|improve this question

46% accept rate
Do you happen to have an ARM binary of adb from this result that you would be willing to share? – transistor1 Sep 7 '11 at 19:22
Never mind -- I was able to compile it. If anyone wants a binary for ADB that can run on ARM7 (i.e. Beagleboard), please see here. – transistor1 Sep 9 '11 at 17:27
feedback

1 Answer

up vote 1 down vote accepted

pseudolocalize.cpp is not needed for adb. And NDK toolchain is intended to build with bionic(Android libc). adb requires glibc(GNU libc) to build.

I created a Makefile to compile adb for Linux/ARM. This Makefile makes statically linked adb executable binary for Linux/ARM, thus it works on Android/ARM as well.

How to make.

  1. Install Sourcery G++ Lite for ARM and GNU Make.
  2. Download "Android source code".
  3. Save Makefile as system/core/adb/Makefile.
  4. cd system/core/adb; make.
link|improve this answer
Thanks for the reply Kazuki. I will definitely try it out tomorrow. How do you know pseudolocalize.cpp is not needed for adb? where can I find the dependency? Also can I just use arm-eabi-g++ under ndk instead of Sourcery G++ lite for ARM? I really appreciate your help. Thanks – user195678 May 6 '11 at 2:59
system/core/adb/Android.mk tells the dependency. Of course you can use arm-eabi-g++, but you also need to build GNU libc, or to modify adb to get rid of the dependency for GNU libc. – Kazuki Sakamoto May 6 '11 at 3:19
Here is what I got after I did everything listed :/root/CodeSourcery/Sourcery_G++_Lite/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.‌​2/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lncurses services.o: In function `dns_service': /root/myrepo/system/core/adb/services.c:65: warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking collect2: ld returned 1 exit status make: *** [adb] Error 1 – user195678 May 6 '11 at 23:10
here is what I got when I do: locate libncurses/lib/libncurses.so.5 /lib/libncurses.so.5.7 /lib32/libncurses.so.5 /lib32/libncurses.so.5.7 /root/myrepo/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/‌​lib/libncurses.so /root/myrepo/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/‌​lib/libncurses.so.5 /root/myrepo/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/‌​lib/libncurses.so.5.6 /usr/lib/libncurses.so /usr/lib/libncurses.so.5 /usr/lib32/libncurses.so – user195678 May 7 '11 at 0:37
Hmm, CodeSourcery Linux toolchain has libncurses. Could you check installation? – Kazuki Sakamoto May 7 '11 at 0:42
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.