From 9959534a782b5af31a4ad70cc2ae11a4cf67953d Mon Sep 17 00:00:00 2001 From: Vadim Markovtsev Date: Thu, 26 Jul 2018 18:54:59 +0200 Subject: [PATCH] Fix the build --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 655f3f0..6bed3bf 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ print("WARNING: not retrieving libuast, using local version") if os.getenv("CC") is None: - os.environ["CC"] = "gcc" + os.environ["CC"] = "g++" # yes, g++ - otherwise distutils will use gcc -std=c++11 and explode if os.getenv("CXX") is None: os.environ["CXX"] = "g++" libraries = ['xml2']