scripts/build/debug/000-template.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jun 20 15:16:43 2008 +0000 (2008-06-20)
changeset 602 1968d150a34f
child 664 6d151993e980
permissions -rw-r--r--
GMP and MPFR are no longer a sub-component of gcc (config-wise).
Build and install GMP and MPFR for the target.
Use the target GMP and MPFR to build the native gdb.
Have separate extra_config for cross gdb, native gdb and gdbserver.
Check native GMP and MPFR in //.

/trunk/scripts/build/debug/300-gdb.sh | 27 19 8 0 ++++++++++++++++-------
/trunk/scripts/build/gmp.sh | 47 39 8 0 ++++++++++++++++++++++++++++++++-------
/trunk/scripts/build/mpfr.sh | 49 40 9 0 +++++++++++++++++++++++++++++++++--------
/trunk/steps.mk | 2 2 0 0 ++
/trunk/config/cc/gcc.in | 18 1 17 0 +--------------
/trunk/config/debug/gdb.in | 6 1 5 0 +----
/trunk/config/config.in | 1 1 0 0 +
/trunk/config/gmp_mpfr.in | 34 34 0 0 ++++++++++++++++++++++++++++
8 files changed, 137 insertions(+), 47 deletions(-)
     1 # Template file for a debug utility
     2 
     3 # Check here wether your debug tool is enabled or not.
     4 # This will get redefined over and over again for each tool, so don't
     5 # count on it in the functions below.
     6 is_enabled="${CT_FOOBAR}"
     7 
     8 # Small function to print the filename
     9 # Note that this function gets redefined over and over for each tool
    10 # It's of no use when building the toolchain proper, but shows all its
    11 # usefullness when saving the toolchain and building the tarball.
    12 # You shall not echo anything if you're not enabled!
    13 # Echo the name of the file, without the extension, below.
    14 do_print_filename() {
    15     # For example:
    16     # [ "${CT_FOOBAR}" = "y" ] || return 0
    17     # echo "foobar-${CT_FOOBAR_VERSION}"
    18     :
    19 }
    20 
    21 # Put your download code here
    22 do_debug_foobar_get() {
    23     # For example:
    24     # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/
    25     :
    26 }
    27 
    28 # Put your extract code here
    29 do_debug_foobar_extract() {
    30     # For example:
    31     # CT_ExtractAndPatch "foobar-${CT_FOOBAR_VERSION}"
    32     :
    33 }
    34 
    35 # Put your build code here
    36 do_debug_foobar_build() {
    37     # For example:
    38     # mkdir -p "${CT_BUILD_DIR}/build-foobar"
    39     # CT_Pushd "${CT_BUILD_DIR}/build-foobar"
    40     # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure"   \
    41     #     --build=${CT_BUILD}                                 \
    42     #     --host=${CT_TARGET}                                 \
    43     #     --prefix=/usr                                       \
    44     #     --foobar-options
    45     # make
    46     # make DESTDIR="${CT_SYSROOT_DIR}" install
    47     # CT_Popd
    48     :
    49 }
    50