aboutsummaryrefslogtreecommitdiff
path: root/etc/environments/default
blob: c7c7953328dcd8508151a6c880b161be16774129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

# file      : etc/environments/default
# license   : TBC; see accompanying LICENSE file

#
# Environment setup script for C/C++ compilation.
#

# NOTE: don't forget to adjust the target mode selection below.
#
c=gcc
cxx=g++

# $1  - target
# $2  - bbot executable (if absent, then run $SHELL)
# $3+ - bbot options

set -e # Exit on errors.

# Based on target determine what we are building.
#
mode=
case "$1" in
  x86_64-*)
    #mode=-m64
    ;;
  i?86-*)
    mode=-m32
    ;;
  *)
    echo "unknown target: '$1'" 1>&2
    exit 1
    ;;
esac
shift

if test $# -ne 0; then
  exec "$@" cc config.c="$c $mode" config.cxx="$cxx $mode"
else
  echo "config.c=$c $mode" 1>&2
  echo "config.cxx=$cxx $mode" 1>&2
  exec $SHELL -i
fi