scripts/wrapper.in
author Titus von Boxberg <titus@v9g.de>
Wed May 19 18:13:00 2010 +0200 (2010-05-19)
changeset 1958 b9ffc1ef43df
parent 1402 146c62142e1b
child 1960 8307ceabe5c0
permissions -rw-r--r--
scripts/crosstool-NG.sh.in: On MacOS/BSD use the output of CT_DoConfigGuess for CT_BUILD.

On 64bit MacOS `gcc -dumpmachine` gives i686 for the host machine.
This conflicts with the expectations of some following configure scripts
that a 64bit x86 is given as x86_64; i686 is understood as a 32 bit machine.
config.guess sets the host machine in CT_BUILD correctly.

yann.morin.1998@anciens.enib.fr:
As suggested by Khem RAJ on the ML, always use config.guess.
yann@1402
     1
#!/bin/sh
yann@1401
     2
bartvdrmeulen@1434
     3
canonicalizedname=$(readlink -nm "${0}")
bartvdrmeulen@1434
     4
dirname="$(dirname "${canonicalizedname}")"
bartvdrmeulen@1434
     5
basename="$(basename "${canonicalizedname}")"
yann@1401
     6
yann@1401
     7
ld_lib_path="$(dirname "${dirname}")/lib"
yann@1401
     8
yann@1401
     9
case ":${LD_LIBRARY_PATH}:" in
yann@1401
    10
    *":${ld_lib_path}:"*)   ;;
yann@1401
    11
    *)  LD_LIBRARY_PATH="${ld_lib_path}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}";;
yann@1401
    12
esac
yann@1401
    13
yann@1401
    14
export LD_LIBRARY_PATH
yann@1402
    15
exec "${dirname}/.${basename}" "$@"