File: builds.sh

package info (click to toggle)
backward-cpp 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 460 kB
  • sloc: cpp: 3,736; sh: 124; python: 51; makefile: 4
file content (77 lines) | stat: -rwxr-xr-x 1,359 bytes parent folder | download | duplicates (8)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash

COMPILERS_CXX98=`cat<<EOF
gcc-4.4
gcc-4.6
gcc-4.7
gcc-4.8
clang
EOF`

COMPILERS_CXX11=`cat<<EOF
gcc-4.7
gcc-4.8
clang
EOF`


function mkbuild() {
	local compiler=$1
	local lang=$2
	local buildtype=$3
	local builddir="$4"
	export CC=$compiler
	export CXX=`echo $compiler | sed -e 's/clang/clang++/' -e 's/gcc/g++/'`
	export CXXFLAGS="-std=$lang"
	echo "Creating $builddir"
	mkdir $builddir 2>/dev/null
	(
		cd "$builddir"
		cmake -DCMAKE_BUILD_TYPE=$buildtype -DBACKWARD_TESTS=ON ..
	)
}

function build() {
	local builddir=$1
	shift
	make -C "$builddir" $@
}

function dotest() {
	local builddir=$1
	shift
	make -C "$builddir" test $@
	return 0
}

function do_action() {
	local lang=$1
	local action=$2
	shift 2

	for compiler in $COMPILERS; do
		local builddir="build_${lang}_${compiler}"

		if [[ $action == "cmake" ]]; then
			buildtype=$1
			mkbuild $compiler $lang "$buildtype" "$builddir"
			[[ $? != 0 ]] && exit
		elif [[ $action == "make" ]]; then
			build "$builddir" $@
			[[ $? != 0 ]] && exit
		elif [[ $action == "test" ]]; then
			dotest "$builddir" $@
			[[ $? != 0 ]] && exit
		elif [[ $action == "clean" ]]; then
			rm -r "$builddir"
		else
			echo "usage: $0 cmake [debug|release|relwithdbg]|make|test|clean"
			exit 255
		fi
	done
}

COMPILERS=$COMPILERS_CXX98
do_action c++98 $@
COMPILERS=$COMPILERS_CXX11
do_action c++11 $@