From 0da507aa1d9c8f2efa80bc4d4b42956bc609bc7b Mon Sep 17 00:00:00 2001 From: Mike Lischke Date: Wed, 9 Nov 2016 13:29:28 +0100 Subject: [PATCH] Let's try clang++. --- .../test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java b/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java index 317c27007..ce7ddb9a1 100644 --- a/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java +++ b/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java @@ -606,7 +606,7 @@ public abstract class BaseCppTest { static boolean runtimeBuiltOnce = false; public String execModule(String fileName) { - String compilerPath = "g++"; //locateCompiler(); + String compilerPath = "clang++"; //locateCompiler(); String runtimePath = locateRuntime(); String includePath = runtimePath + "/runtime/src"; String binPath = new File(new File(tmpdir), "a.out").getAbsolutePath();