source: scripts/target-scripts/target-strace.sh@ 60454e2

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 60454e2 was 617118d, checked in by Jim Gifford <clfs@…>, 19 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
RevLine 
[617118d]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.