mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-24 15:06:42 +00:00
82c9d1aceb
- each config file no longer have to define their own 'menuconfig foo - if FOO - endif' gym - each build script no longer has to say wether they are enabled - generation of the 'menuconfig' entries for the Tools and Debug facilities now uses the same code Some re-ordering of the code to be consistent with the steps ordering (tools, then debug). /trunk/kconfig/kconfig.mk | 66 43 23 0 +++++++++++++++++++++++------------- /trunk/scripts/build/debug.sh | 14 9 5 0 +++++--- /trunk/scripts/build/tools/000-template.sh | 7 0 7 0 ---- /trunk/scripts/build/tools/100-libelf.sh | 3 0 3 0 -- /trunk/scripts/build/tools/200-sstrip.sh | 2 0 2 0 - /trunk/scripts/build/debug/000-template.sh | 7 0 7 0 ---- /trunk/scripts/build/debug/100-dmalloc.sh | 3 0 3 0 -- /trunk/scripts/build/debug/400-ltrace.sh | 3 0 3 0 -- /trunk/scripts/build/debug/300-gdb.sh | 3 0 3 0 -- /trunk/scripts/build/debug/500-strace.sh | 3 0 3 0 -- /trunk/scripts/build/debug/200-duma.sh | 3 0 3 0 -- /trunk/scripts/build/tools.sh | 14 9 5 0 +++++--- /trunk/scripts/crosstool.sh | 2 1 1 0 /trunk/config/debug/ltrace.in | 14 3 11 0 ++------ /trunk/config/debug/dmalloc.in | 9 1 8 0 +---- /trunk/config/debug/gdb.in | 9 1 8 0 +---- /trunk/config/debug/strace.in | 10 1 9 0 ----- /trunk/config/debug/duma.in | 10 1 9 0 ----- /trunk/config/tools/libelf.in | 12 2 10 0 +------ /trunk/config/tools/sstrip.in | 10 1 9 0 ----- /trunk/config/config.in | 4 2 2 0 +- 21 files changed, 74 insertions(+), 134 deletions(-)
74 lines
2.4 KiB
Bash
74 lines
2.4 KiB
Bash
# This will build and install sstrip to run on host and sstrip target files
|
|
|
|
case "${CT_SSTRIP_FROM}" in
|
|
ELFkickers)
|
|
do_print_filename() {
|
|
echo "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
|
}
|
|
do_tools_sstrip_get() {
|
|
CT_GetFile "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}" \
|
|
http://www.muppetlabs.com/~breadbox/pub/software
|
|
}
|
|
do_tools_sstrip_extract() {
|
|
CT_ExtractAndPatch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
|
}
|
|
do_tools_sstrip_build() {
|
|
CT_DoStep INFO "Installing sstrip"
|
|
mkdir -p "${CT_BUILD_DIR}/build-strip"
|
|
cd "${CT_BUILD_DIR}/build-strip"
|
|
( cd "${CT_SRC_DIR}/ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}/sstrip"; tar cf - . ) |tar xf -
|
|
|
|
CT_DoLog EXTRA "Building sstrip"
|
|
CT_DoExecLog ALL make CC="${CT_CC_NATIVE}" sstrip
|
|
|
|
CT_DoLog EXTRA "Installing sstrip"
|
|
CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
|
|
|
|
CT_EndStep
|
|
}
|
|
;;
|
|
|
|
buildroot)
|
|
do_print_filename() {
|
|
echo "sstrip.c"
|
|
}
|
|
do_tools_sstrip_get() {
|
|
# Note: the space between sstrip and .c is on purpose.
|
|
CT_GetFile sstrip .c \
|
|
"http://buildroot.uclibc.org/cgi-bin/viewcvs.cgi/*checkout*/trunk/buildroot/toolchain/sstrip/"
|
|
}
|
|
do_tools_sstrip_extract() {
|
|
# We'll let buildroot guys take care of sstrip maintenance and patching.
|
|
mkdir -p "${CT_SRC_DIR}/sstrip"
|
|
CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
|
|
}
|
|
do_tools_sstrip_build() {
|
|
CT_DoStep INFO "Installing sstrip"
|
|
mkdir -p "${CT_BUILD_DIR}/build-sstrip"
|
|
cd "${CT_BUILD_DIR}/build-sstrip"
|
|
|
|
CT_DoLog EXTRA "Building sstrip"
|
|
CT_DoExecLog ALL ${CT_CC_NATIVE} -Wall -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c"
|
|
|
|
CT_DoLog EXTRA "Installing sstrip"
|
|
CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
|
|
|
|
CT_EndStep
|
|
}
|
|
;;
|
|
|
|
*) do_print_filename() {
|
|
:
|
|
}
|
|
do_tools_sstrip_get() {
|
|
:
|
|
}
|
|
do_tools_sstrip_extract() {
|
|
:
|
|
}
|
|
do_tools_sstrip_build() {
|
|
:
|
|
}
|
|
;;
|
|
esac
|