I'm working on 64 bit linux, need to build gdbserver for my aarch64 Android phone.There is prebuilt gdbserver in NDK, but it uses the python in NDK package, not using my system python, I can't install other python plugins.
How to find which --target
and --host
parameter is required for ./configure
? I tried the --help
, and google like "build gdbserver aarch64" or "gdbserver configure android", but did't find any answer for aarch64 Android.
For gdb I can use ./configure --enable-targets=all
, but what for gdbserver
? Is there any "List" for all the available parameters?
Here's how I tried to build gdbserver
- downloaded the gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux package, decompress and add it to PATH, add environment variable
CC=arm-none-eabi-gcc
,CXX=arm-none-eabi-g++
, make the executable available in PATH - I tried all of these:
../configure
../configure --host=aarch64-linux --target=aarch64-linux-androideabi
../configure --host=aarch64-linux-androideabi --target=aarch64-linux
../configure --host=aarch64-linux-androideabi --target=aarch64-linux-androideabi
- make, which results in:
...
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/opt/gdb-9.1/gdb/gdbserver/build/build-libiberty-gdbserver/testsuite'
make[2]: Leaving directory '/opt/gdb-9.1/gdb/gdbserver/build/build-libiberty-gdbserver'
make[1]: Leaving directory '/opt/gdb-9.1/gdb/gdbserver/build'
make: *** No rule to make target '../alloc.c'. Stop.
also tried:
make CC=arm-none-eabi-gcc CXX=arm-none-eabi-g++
or CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++
But same result.
Got answer from somewhere else, put here in case who wants do the same.
This modification is neccessary to build Android, since Android system libraries already define struct Elf32_auxv_t and Elf64_auxv_t .(Please see this for detail: https://github.com/android/ndk/issues/1008)
linux_request_interrupt
:This fixes bug "gdbserver not handling
Ctrl+C
", detail at: https://sourceware.org/bugzilla/show_bug.cgi?id=18772This step create the standalone toolchain at: ~/android/ndk_21
If get error related to "source-highlight", add
--disable-source-highlight
to theconfigure
flag.After build finishes, gdbserver is located at: gdb/gdbserver/gdbserver