forked from real-logic/aeron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cppbuild
executable file
·109 lines (102 loc) · 3.19 KB
/
cppbuild
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env bash
SOURCE_DIR="$(pwd)"
export BUILD_DIR="${SOURCE_DIR}/cppbuild/Release"
export BUILD_CONFIG=Release
EXTRA_CMAKE_ARGS=""
COVERAGE_BUILD=0
ncpus=1
case "$(uname)" in
Darwin* )
ncpus=$(sysctl -n hw.ncpu)
;;
Linux*)
ncpus=$(lscpu -p | grep -c -E -v '^#')
;;
esac
while [[ $# -gt 0 ]]
do
option="${1}"
case ${option} in
--c-warnings-as-errors)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DC_WARNINGS_AS_ERRORS=ON"
echo "Enabling warnings as errors for c"
shift
;;
--cxx-warnings-as-errors)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DCXX_WARNINGS_AS_ERRORS=ON"
echo "Enabling warnings as errors for c++"
shift
;;
-a|--build-archive-api)
echo "Enabling building of Aeron Archive API is the default"
shift
;;
--slow-system-tests)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DAERON_SLOW_SYSTEM_TESTS=ON"
echo "Enabling slow system tests"
shift
;;
-d|--debug-build)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DCMAKE_BUILD_TYPE=Debug"
export BUILD_DIR="${SOURCE_DIR}/cppbuild/Debug"
export BUILD_CONFIG=Debug
shift
;;
-b|--build-aeron-driver)
echo "Enabling building of Aeron driver is the default"
shift
;;
--no-parallel)
ncpus=1
shift
;;
--no-system-tests)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DAERON_SYSTEM_TESTS=OFF"
echo "Disabling system tests"
shift
;;
--sanitise-build)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DSANITISE_BUILD=ON"
echo "Enabling sanitise build"
shift
;;
--coverage-build)
if (hash lcov 2>/dev/null && hash genhtml 2>/dev/null); then
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DCOVERAGE_BUILD=ON"
echo "Enabling coverage build"
COVERAGE_BUILD=1
else
echo "lcov/genhtml not found - you need these installed to run the coverage build"
exit
fi
shift
;;
-h|--help)
echo "${0} [--c-warnings-as-errors] [--cxx-warnings-as-errors] [--debug-build] [--build-aeron-driver] [--build-archive-api] [--sanitise-build] [--coverage-build] [--no-parallel] [--no-system-tests] [--slow-system-tests]"
exit
;;
*)
echo "Unknown option ${option}"
echo "Use --help for help"
exit
;;
esac
done
echo "Will make with \"-j ${ncpus}\"."
if [[ -d "${BUILD_DIR}" ]] ; then
echo "Build directory (${BUILD_DIR}) exists, removing."
rm -rf "${BUILD_DIR}"
fi
mkdir -p "${BUILD_DIR}"
if [[ ${COVERAGE_BUILD} -eq 1 ]] ; then
cd "${BUILD_DIR}" || exit
cmake -G "Unix Makefiles" ${EXTRA_CMAKE_ARGS} "${SOURCE_DIR}" && make clean && make -j ${ncpus} all && ctest -C ${BUILD_CONFIG} -j ${ncpus}
rm -rf coverage
mkdir -p coverage
lcov --directory . --base-directory . --capture -o coverage/cov.info
lcov -o coverage/cov.stripped.info --remove coverage/cov.info "/usr/include/*" "*/googletest/*" "*/test/cpp/*" "*/googlemock/*"
genhtml coverage/cov.stripped.info --demangle-cpp -o coverage
else
cd "${BUILD_DIR}" || exit
cmake -G "CodeBlocks - Unix Makefiles" ${EXTRA_CMAKE_ARGS} "${SOURCE_DIR}" && make clean && make -j ${ncpus} all && ctest -C ${BUILD_CONFIG} --output-on-failure
fi