Skip to content
Snippets Groups Projects
Commit da651e05 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Remove coverage compilation support

parent 5fc8ebfd
No related branches found
No related tags found
No related merge requests found
...@@ -199,23 +199,15 @@ fi ...@@ -199,23 +199,15 @@ fi
PREFIX=${CI_PROJECT_DIR}/${CONDA_PREFIX} PREFIX=${CI_PROJECT_DIR}/${CONDA_PREFIX}
# Add "-coverage" support
if [ "${ARCH}" == "linux" ]; then if [ "${ARCH}" == "linux" ]; then
# Temporary hack to get building done right with gcc-5 compilers # Temporary hack to get building done right with gcc-5 compilers
if [ -z "${CFLAGS}" ]; then if [ -z "${CFLAGS}" ]; then
CFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0 -coverage" CFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0"
else else
CFLAGS="${CFLAGS} -D_GLIBCXX_USE_CXX11_ABI=0 -coverage" CFLAGS="${CFLAGS} -D_GLIBCXX_USE_CXX11_ABI=0"
fi fi
CXXFLAGS=${CFLAGS}
else
if [ -z "${CFLAGS}" ]; then
CFLAGS="-coverage"
else
CFLAGS="${CFLAGS} -coverage"
fi
CXXFLAGS=${CFLAGS}
fi fi
CXXFLAGS=${CFLAGS}
PYVER=py$(echo ${PYTHON_VERSION} | tr -d '.') PYVER=py$(echo ${PYTHON_VERSION} | tr -d '.')
if [ -z "${BOB_PREFIX_PATH}" ]; then if [ -z "${BOB_PREFIX_PATH}" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment