This is the mail archive of the gdb@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PowerPC64 in 64bit does not build gdbserver?


I noticed that building GDB 64bit on a powerpc64 machine does not build
gdbserver. This is because in src/gdb/configure.tgt is missing one line

build_gdbserver=yes

Currently in src/gdb/configure.tgt

=======================
powerpc-*-linux*)       gdb_target=linux
                        build_gdbserver=yes
                        ;;
powerpc64-*-linux*)     gdb_target=linux ;;
powerpc-*-vxworks*)     gdb_target=vxworks ;;
powerpc*-*-*)           if test -f ../sim/ppc/Makefile
===============

and it should be

============ FIX =====================
powerpc-*-linux*)       gdb_target=linux
                        build_gdbserver=yes
                        ;;
powerpc64-*-linux*)     gdb_target=linux
			build_gdbserver=yes;;
powerpc-*-vxworks*)     gdb_target=vxworks ;;
powerpc*-*-*)           if test -f ../sim/ppc/Makefil
=========

Regards
--
Manoj Iyer


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]