source: scripts/target-scripts/target-strace.sh @ 617118d

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 617118d was 617118d, checked in by Jim Gifford <clfs@…>, 18 years ago

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100755
File size: 977 bytes
Line 
1#!/bin/bash
2
3# cross-lfs target strace build
4# -----------------------------
5# $LastChangedBy$
6# $LastChangedDate$
7# $LastChangedRevision$
8# $HeadURL$
9#
10
11cd ${SRC}
12LOG=strace-target.log
13
14set_libdirname
15setup_multiarch
16
17if [ "${USE_SYSROOT}" = "Y" ]; then
18   BUILD_PREFIX=/usr
19   INSTALL_PREFIX="${LFS}${BUILD_PREFIX}"
20   INSTALL_OPTIONS="DESTDIR=${LFS}"
21else
22   BUILD_PREFIX="${TGT_TOOLS}"
23   INSTALL_PREFIX="${TGT_TOOLS}"
24   INSTALL_OPTIONS=""
25fi
26
27unpack_tarball strace-${STRACE_VER} &&
28cd ${PKGDIR}
29
30max_log_init strace ${STRACE_VER} "target (shared)" ${CONFLOGS} ${LOG}
31CC="${TARGET}-gcc ${ARCH_CFLAGS}" \
32CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
33./configure --prefix=${BUILD_PREFIX} \
34   --host=${TARGET} \
35   >> ${LOGFILE} 2>&1 &&
36echo " o Configure OK" &&
37
38min_log_init ${BUILDLOGS} &&
39make ${PMFLAGS} LDFLAGS="-s" \
40   >> ${LOGFILE} 2>&1 &&
41echo " o Build OK" &&
42
43min_log_init ${INSTLOGS} &&
44make ${INSTALL_OPTIONS} install \
45   >> ${LOGFILE} 2>&1 &&
46echo " o ALL OK" || barf
Note: See TracBrowser for help on using the repository browser.