From d3cb3e6b5bc8da2f73e5b4201a7e1c02c783cc40 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.anjos@idiap.ch>
Date: Thu, 11 Aug 2016 18:07:06 +0200
Subject: [PATCH] [ci] Don't use C++11 ABI on builds - be compatible with Conda

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4ea17de..0fd1255 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -53,6 +53,7 @@ variables:
     <<: *build_variables
     CONDA_FOLDER: "/local/conda"
     CFLAGS: "-coverage"
+    CXXFLAGS: "-D_GLIBCXX_USE_CXX11_ABI=0 -coverage"
 
 
 # Template for building on a Mac OSX machine
@@ -63,6 +64,7 @@ variables:
     CONDA_FOLDER: "/opt/conda"
     MACOSX_DEPLOYMENT_TARGET: "10.9"
     CFLAGS: "-pthread -coverage"
+    CXXFLAGS: "-D_GLIBCXX_USE_CXX11_ABI=0 -pthread -coverage"
 
 
 # Template for the test stage - re-install from uploaded wheels
-- 
GitLab