mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
cc6b7fad46
... and the code dependent on them, after the latest wave of obsolete package removals. This concludes the glorious history of the original uClibc (non-NG) with lots of kludges removed. There was a choice here, whether to call the resulting libc "uClibc" or "uClibc-ng". I opted in favor of giving uClibc-ng the recognition it deserves, although it had some ripple effect in the ct-ng code. Signed-off-by: Alexey Neyman <stilor@att.net>
38 lines
840 B
Bash
38 lines
840 B
Bash
# Build script for ltrace
|
|
|
|
do_debug_ltrace_get() {
|
|
CT_Fetch LTRACE
|
|
}
|
|
|
|
do_debug_ltrace_extract() {
|
|
CT_ExtractPatch LTRACE
|
|
}
|
|
|
|
do_debug_ltrace_build() {
|
|
local ltrace_host
|
|
|
|
CT_DoStep INFO "Installing ltrace"
|
|
|
|
CT_DoLog EXTRA "Copying sources to build dir"
|
|
CT_DoExecLog ALL cp -av "${CT_SRC_DIR}/ltrace/." \
|
|
"${CT_BUILD_DIR}/build-ltrace"
|
|
CT_Pushd "${CT_BUILD_DIR}/build-ltrace"
|
|
|
|
CT_DoLog EXTRA "Configuring ltrace"
|
|
CT_DoExecLog CFG \
|
|
${CONFIG_SHELL} \
|
|
./configure \
|
|
--build=${CT_BUILD} \
|
|
--host=${CT_TARGET} \
|
|
--prefix=/usr
|
|
|
|
CT_DoLog EXTRA "Building ltrace"
|
|
CT_DoExecLog ALL make
|
|
|
|
CT_DoLog EXTRA "Installing ltrace"
|
|
CT_DoExecLog ALL make DESTDIR="${CT_DEBUGROOT_DIR}" install
|
|
|
|
CT_Popd
|
|
CT_EndStep
|
|
}
|