scripts/build/debug/300-gdb.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Mar 24 17:37:52 2009 +0000 (2009-03-24)
changeset 1266 5e5910270991
parent 1264 2b591f1d34ba
child 1267 ca485f06bfa7
permissions -rw-r--r--
Log the save/restore messages at a level that is always visible.

/trunk/scripts/functions | 7 5 2 0 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
     1 # Build script for the gdb debug facility
     2 
     3 do_debug_gdb_suffix() {
     4     case "${CT_GDB_VERSION}" in
     5         snapshot)   ;;
     6         *)          echo "-${CT_GDB_VERSION}";;
     7     esac
     8 }
     9 
    10 do_debug_gdb_parts() {
    11     do_gdb=
    12     do_insight=
    13     do_ncurses=
    14 
    15     if [ "${CT_GDB_CROSS}" = y ]; then
    16         if [ "${CT_GDB_CROSS_INSIGHT}" = "y" ]; then
    17             do_insight=y
    18         else
    19             do_gdb=y
    20         fi
    21     fi
    22 
    23     if [ "${CT_GDB_GDBSERVER}" = "y" ]; then
    24         do_gdb=y
    25     fi
    26 
    27     if [ "${CT_GDB_NATIVE}" = "y" ]; then
    28         do_gdb=y
    29         do_ncurses=y
    30     fi
    31 }
    32 
    33 do_debug_gdb_get() {
    34     do_debug_gdb_parts
    35 
    36     if [ "${do_gdb}" = "y" ]; then
    37         CT_GetFile "gdb$(do_debug_gdb_suffix)"              \
    38                    {ftp,http}://ftp.gnu.org/pub/gnu/gdb     \
    39                    ftp://sources.redhat.com/pub/gdb/{{,old-}releases,snapshots/current}
    40     fi
    41 
    42     if [ "${do_insight}" = "y" ]; then
    43         CT_GetFile "insight-${CT_GDB_VERSION}"                                              \
    44                    ftp://sourceware.org/pub/insight/releases                                \
    45                    {ftp,http}://ftp.twaren.net/Unix/Sourceware/insight/releases             \
    46                    {ftp,http}://ftp.gwdg.de/pub/linux/sources.redhat.com/insight/releases
    47     fi
    48 
    49     if [ "${do_ncurses}" = "y" ]; then
    50         CT_GetFile "ncurses-${CT_NCURSES_VERSION}"          \
    51                    {ftp,http}://ftp.gnu.org/pub/gnu/ncurses \
    52                    ftp://invisible-island.net/ncurses
    53     fi
    54 }
    55 
    56 do_debug_gdb_extract() {
    57     do_debug_gdb_parts
    58 
    59     if [ "${do_gdb}" = "y" ]; then
    60         CT_Extract "gdb$(do_debug_gdb_suffix)"
    61         CT_Patch "gdb$(do_debug_gdb_suffix)"
    62     fi
    63 
    64     if [ "${do_insight}" = "y" ]; then
    65         CT_Extract "insight-${CT_GDB_VERSION}"
    66         CT_Patch "insight-${CT_GDB_VERSION}"
    67     fi
    68 
    69     if [ "${do_ncurses}" = "y" ]; then
    70         CT_Extract "ncurses-${CT_NCURSES_VERSION}"
    71         CT_Patch "ncurses-${CT_NCURSES_VERSION}"
    72     fi
    73 }
    74 
    75 do_debug_gdb_build() {
    76     gdb_src_dir="${CT_SRC_DIR}/gdb$(do_debug_gdb_suffix)"
    77     insight_src_dir="${CT_SRC_DIR}/insight-${CT_GDB_VERSION}"
    78 
    79     extra_config=
    80     # Version 6.3 and below behave badly with gdbmi
    81     case "${CT_GDB_VERSION}" in
    82         6.2*|6.3)   extra_config="${extra_config} --disable-gdbmi";;
    83     esac
    84 
    85     if [ "${CT_GDB_CROSS}" = "y" ]; then
    86         CT_DoStep INFO "Installing cross-gdb"
    87         CT_DoLog EXTRA "Configuring cross-gdb"
    88 
    89         mkdir -p "${CT_BUILD_DIR}/build-gdb-cross"
    90         cd "${CT_BUILD_DIR}/build-gdb-cross"
    91 
    92         cross_extra_config="${extra_config}"
    93         if [ "${CT_GMP_MPFR}" = "y" ]; then
    94             cross_extra_config="${cross_extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
    95         fi
    96         case "${CT_THREADS}" in
    97             none)   cross_extra_config="${cross_extra_config} --disable-threads";;
    98             *)      cross_extra_config="${cross_extra_config} --enable-threads";;
    99         esac
   100 
   101         CC_for_gdb=
   102         LD_for_gdb=
   103         if [ "${CT_GDB_CROSS_STATIC}" = "y" ]; then
   104             CC_for_gdb="gcc -static"
   105             LD_for_gdb="ld -static"
   106         fi
   107 
   108         gdb_cross_configure="${gdb_src_dir}/configure"
   109         [ "${CT_GDB_CROSS_INSIGHT}" = "y" ] && gdb_cross_configure="${insight_src_dir}/configure"
   110 
   111         CT_DoLog DEBUG "Extra config passed: '${cross_extra_config# }'"
   112 
   113         CC="${CC_for_gdb}"                              \
   114         LD="${LD_for_gdb}"                              \
   115         CT_DoExecLog ALL                                \
   116         "${gdb_cross_configure}"                        \
   117             --build=${CT_BUILD}                         \
   118             --host=${CT_HOST}                           \
   119             --target=${CT_TARGET}                       \
   120             --prefix="${CT_PREFIX_DIR}"                 \
   121             --with-build-sysroot="${CT_SYSROOT_DIR}"    \
   122             --disable-werror                            \
   123             ${cross_extra_config}
   124 
   125         CT_DoLog EXTRA "Building cross-gdb"
   126         CT_DoExecLog ALL make ${PARALLELMFLAGS}
   127 
   128         CT_DoLog EXTRA "Installing cross-gdb"
   129         CT_DoExecLog ALL make install
   130 
   131         CT_EndStep
   132     fi
   133 
   134     if [ "${CT_GDB_NATIVE}" = "y" ]; then
   135         CT_DoStep INFO "Installing native gdb"
   136 
   137         CT_DoStep INFO "Installing native ncurses tic"
   138         CT_DoLog EXTRA "Configuring ncurses tic"
   139         mkdir -p "${CT_BUILD_DIR}/build-ncurses-build-tic"
   140         cd "${CT_BUILD_DIR}/build-ncurses-build-tic"
   141 
   142         ncurses_opts=
   143         [ "${CT_CC_LANG_CXX}" = "y" ] || ncurses_opts="${ncurses_opts} --without-cxx --without-cxx-binding"
   144         [ "${CT_CC_LANG_ADA}" = "y" ] || ncurses_opts="${ncurses_opts} --without-ada"
   145 
   146         # Use build = CT_REAL_BUILD so that configure thinks it is
   147         # cross-compiling, and thus will use the ${CT_BUILD}-*
   148         # tools instead of searching for the native ones...
   149         CT_DoExecLog ALL                                        \
   150         "${CT_SRC_DIR}/ncurses-${CT_NCURSES_VERSION}/configure" \
   151             --build=${CT_REAL_BUILD}                            \
   152             --host=${CT_BUILD}                                  \
   153             --prefix=/usr                                       \
   154             --without-shared                                    \
   155             --enable-symlinks                                   \
   156             --with-build-cc=${CT_REAL_BUILD}-gcc                \
   157             --with-build-cpp=${CT_REAL_BUILD}-gcc               \
   158             --with-build-cflags="${CT_CFLAGS_FOR_HOST}"         \
   159             ${ncurses_opts}
   160 
   161         CT_DoLog EXTRA "Building ncurses tic"
   162         CT_DoExecLog ALL make -C "${CT_BUILD_DIR}/build-ncurses-build-tic/include"
   163         CT_DoExecLog ALL make -C "${CT_BUILD_DIR}/build-ncurses-build-tic/progs" tic
   164 
   165         CT_DoLog EXTRA "Installing ncurses tic"
   166         CT_DoExecLog ALL install -d -m 0755 "${CT_PREFIX_DIR}/bin"
   167         CT_DoExecLog ALL install -m 0755 "${CT_BUILD_DIR}/build-ncurses-build-tic/progs/tic" "${CT_PREFIX_DIR}/bin/tic"
   168 
   169         CT_EndStep
   170 
   171         CT_DoStep INFO "Installing ncurses library"
   172         CT_DoLog EXTRA "Configuring ncurses"
   173         mkdir -p "${CT_BUILD_DIR}/build-ncurses"
   174         cd "${CT_BUILD_DIR}/build-ncurses"
   175 
   176         ncurses_opts=
   177         [ "${CT_CC_LANG_CXX}" = "y" ] || ncurses_opts="${ncurses_opts} --without-cxx --without-cxx-binding"
   178         [ "${CT_CC_LANG_ADA}" = "y" ] || ncurses_opts="${ncurses_opts} --without-ada"
   179 
   180         CT_DoExecLog ALL                                        \
   181         "${CT_SRC_DIR}/ncurses-${CT_NCURSES_VERSION}/configure" \
   182             --build=${CT_BUILD}                                 \
   183             --host=${CT_TARGET}                                 \
   184             --with-build-cc=${CT_BUILD}-gcc                     \
   185             --with-build-cpp=${CT_BUILD}-gcc                    \
   186             --with-build-cflags="${CT_CFLAGS_FOR_HOST}"         \
   187             --prefix=/usr                                       \
   188             --with-shared                                       \
   189             --without-sysmouse                                  \
   190             --without-progs                                     \
   191             --enable-termcap                                    \
   192             ${ncurses_opts}
   193 
   194         CT_DoLog EXTRA "Building ncurses"
   195         CT_DoExecLog ALL make ${PARALLELMFLAGS}
   196 
   197         CT_DoLog EXTRA "Installing ncurses"
   198         mkdir -p "${CT_SYSROOT_DIR}/usr/bin"
   199         CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
   200 
   201         CT_EndStep
   202 
   203         CT_DoLog EXTRA "Configuring native gdb"
   204 
   205         mkdir -p "${CT_BUILD_DIR}/build-gdb-native"
   206         cd "${CT_BUILD_DIR}/build-gdb-native"
   207 
   208         native_extra_config="${extra_config}"
   209         case "${CT_THREADS}" in
   210             none)   native_extra_config="${native_extra_config} --disable-threads";;
   211             *)      native_extra_config="${native_extra_config} --enable-threads";;
   212         esac
   213         if [ "${CT_GDB_NATIVE_USE_GMP_MPFR}" = "y" ]; then
   214             native_extra_config="${native_extra_config} --with-gmp=${CT_SYSROOT_DIR}/usr --with-mpfr=${CT_SYSROOT_DIR}/usr"
   215         fi
   216 
   217         if [ "${CT_GDB_NATIVE_STATIC}" = "y" ]; then
   218             CC_for_gdb="${CT_TARGET}-gcc -static"
   219             LD_for_gdb="${CT_TARGET}-ld -static"
   220         else
   221             CC_for_gdb="${CT_TARGET}-gcc"
   222             LD_for_gdb="${CT_TARGET}-ld"
   223         fi
   224 
   225         export ac_cv_func_strncmp_works=yes
   226 
   227         CT_DoLog DEBUG "Extra config passed: '${native_extra_config# }'"
   228 
   229         CC="${CC_for_gdb}"                              \
   230         LD="${LD_for_gdb}"                              \
   231         CT_DoExecLog ALL                                \
   232         "${gdb_src_dir}/configure"                      \
   233             --build=${CT_BUILD}                         \
   234             --host=${CT_TARGET}                         \
   235             --target=${CT_TARGET}                       \
   236             --prefix=/usr                               \
   237             --with-build-sysroot="${CT_SYSROOT_DIR}"    \
   238             --without-uiout                             \
   239             --disable-tui                               \
   240             --disable-gdbtk                             \
   241             --without-x                                 \
   242             --disable-sim                               \
   243             --disable-werror                            \
   244             --without-included-gettext                  \
   245             --without-develop                           \
   246             ${native_extra_config}
   247 
   248         CT_DoLog EXTRA "Building native gdb"
   249         CT_DoExecLog ALL make ${PARALLELMFLAGS} CC=${CT_TARGET}-${CT_CC}
   250 
   251         CT_DoLog EXTRA "Installing native gdb"
   252         CT_DoExecLog ALL make DESTDIR="${CT_DEBUGROOT_DIR}" install
   253 
   254         # Building a native gdb also builds a gdbserver
   255         find "${CT_DEBUGROOT_DIR}" -type f -name gdbserver -exec rm -fv {} \; 2>&1 |CT_DoLog ALL
   256 
   257         unset ac_cv_func_strncmp_works
   258 
   259         CT_EndStep
   260     fi
   261 
   262     if [ "${CT_GDB_GDBSERVER}" = "y" ]; then
   263         CT_DoStep INFO "Installing gdbserver"
   264         CT_DoLog EXTRA "Configuring gdbserver"
   265 
   266         mkdir -p "${CT_BUILD_DIR}/build-gdb-gdbserver"
   267         cd "${CT_BUILD_DIR}/build-gdb-gdbserver"
   268 
   269         # Workaround for bad versions, where the configure
   270         # script for gdbserver is not executable...
   271         # Bah, GNU folks strike again... :-(
   272         chmod +x "${gdb_src_dir}/gdb/gdbserver/configure"
   273 
   274         gdbserver_LDFLAGS=
   275         if [ "${CT_GDB_GDBSERVER_STATIC}" = "y" ]; then
   276             gdbserver_LDFLAGS=-static
   277         fi
   278 
   279         gdbserver_extra_config="${extra_config}"
   280 
   281         LDFLAGS="${gdbserver_LDFLAGS}"                  \
   282         CT_DoExecLog ALL                                \
   283         "${gdb_src_dir}/gdb/gdbserver/configure"        \
   284             --build=${CT_BUILD}                         \
   285             --host=${CT_TARGET}                         \
   286             --target=${CT_TARGET}                       \
   287             --prefix=/usr                               \
   288             --sysconfdir=/etc                           \
   289             --localstatedir=/var                        \
   290             --includedir="${CT_HEADERS_DIR}"            \
   291             --with-build-sysroot="${CT_SYSROOT_DIR}"    \
   292             --program-prefix=                           \
   293             --without-uiout                             \
   294             --disable-tui                               \
   295             --disable-gdbtk                             \
   296             --without-x                                 \
   297             --without-included-gettext                  \
   298             --without-develop                           \
   299             --disable-werror                            \
   300             ${gdbserver_extra_config}
   301 
   302         CT_DoLog EXTRA "Building gdbserver"
   303         CT_DoExecLog ALL make ${PARALLELMFLAGS} CC=${CT_TARGET}-${CT_CC}
   304 
   305         CT_DoLog EXTRA "Installing gdbserver"
   306         CT_DoExecLog ALL make DESTDIR="${CT_DEBUGROOT_DIR}" install
   307 
   308         CT_EndStep
   309     fi
   310 }