mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-03 03:26:39 +00:00
28176fe21e
On 20090115.0012+0100, "Andy Johnson" <ajohnson@aecno.com> wrote: ltrace wouldn't build on PowerPC because in the sysdeps/linux-gnu directory in the ltrace source tree the powerpc directory is called ppc. I added some code in 400-ltrace.sh to create a symlink for it so it will build now. Patch slightly modified by me before applying. /trunk/scripts/build/debug/400-ltrace.sh | 5 5 0 0 +++++ 1 file changed, 5 insertions(+)
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
# Build script for ltrace
|
|
|
|
do_debug_ltrace_get() {
|
|
CT_GetFile "ltrace_${CT_LTRACE_VERSION}.orig" {ftp,http}://ftp.de.debian.org/debian/pool/main/l/ltrace/
|
|
# Create a link so that the following steps are easier to do:
|
|
cd "${CT_TARBALLS_DIR}"
|
|
ltrace_ext=$(CT_GetFileExtension "ltrace_${CT_LTRACE_VERSION}.orig")
|
|
ln -sf "ltrace_${CT_LTRACE_VERSION}.orig${ltrace_ext}" "ltrace-${CT_LTRACE_VERSION}${ltrace_ext}"
|
|
}
|
|
|
|
do_debug_ltrace_extract() {
|
|
CT_Extract "ltrace-${CT_LTRACE_VERSION}"
|
|
CT_Patch "ltrace-${CT_LTRACE_VERSION}"
|
|
# ltrace uses ppc instead of powerpc for the arch name
|
|
# create a symlink to get it to build for powerpc
|
|
CT_Pushd "${CT_SRC_DIR}/ltrace-${CT_LTRACE_VERSION}/sysdeps/linux-gnu"
|
|
CT_DoExecLog ALL ln -sf ppc powerpc
|
|
CT_Popd
|
|
}
|
|
|
|
do_debug_ltrace_build() {
|
|
CT_DoStep INFO "Installing ltrace"
|
|
mkdir -p "${CT_BUILD_DIR}/build-ltrace"
|
|
CT_Pushd "${CT_BUILD_DIR}/build-ltrace"
|
|
|
|
CT_DoLog EXTRA "Copying sources to build dir"
|
|
(cd "${CT_SRC_DIR}/ltrace-${CT_LTRACE_VERSION}"; tar cf - .)| tar xvf - |CT_DoLog ALL
|
|
|
|
CT_DoLog EXTRA "Configuring ltrace"
|
|
CT_DoExecLog ALL \
|
|
./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_DEBUG_INSTALL_DIR}" install
|
|
|
|
CT_Popd
|
|
CT_EndStep
|
|
}
|
|
|