scripts/build/debug/000-template.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 27 14:28:36 2008 +0000 (2008-07-27)
branch1.2
changeset 739 8ebf5ea601d8
parent 479 05c62432ec19
child 916 68af6b83ff7e
permissions -rw-r--r--
Backport #876 from trunk:
Re-enable the restart functionality by removing some variables from the saved environment.

/branches/1.2/scripts/functions | 16 10 6 0 ++++++++++------
1 file changed, 10 insertions(+), 6 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_DoExecLog ALL                                        \
    41     # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure"   \
    42     #     --build=${CT_BUILD}                                 \
    43     #     --host=${CT_TARGET}                                 \
    44     #     --prefix=/usr                                       \
    45     #     --foobar-options
    46     # CT_DoExecLog ALL make
    47     # CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
    48     # CT_Popd
    49     :
    50 }
    51