take out flag for cmake as it doesn't work on linux. turn off C++ tests on mac
This commit is contained in:
parent
8e33fe49f5
commit
27a59988a2
|
@ -7,3 +7,4 @@ mvn -Dtest=python3.* test
|
|||
mvn -Dtest=node.* test
|
||||
mvn -Dtest=go.* test
|
||||
mvn -Dtest=cpp.* test
|
||||
#mvn -Dtest=swift.* test
|
||||
|
|
|
@ -6,5 +6,5 @@ mvn -Dtest=python2.* test
|
|||
mvn -Dtest=python3.* test
|
||||
mvn -Dtest=node.* test
|
||||
mvn -Dtest=go.* test
|
||||
mvn -Dtest=cpp.* test
|
||||
#mvn -Dtest=cpp.* test
|
||||
mvn -Dtest=swift.* test
|
||||
|
|
|
@ -622,7 +622,7 @@ public class BaseCppTest implements RuntimeTestSupport {
|
|||
System.out.println("Building ANTLR4 C++ runtime (if necessary) at "+ runtimePath);
|
||||
|
||||
try {
|
||||
String command[] = { "cmake", ".", "-DCMAKE_CXX_COMPILER=clang++", "-DCMAKE_BUILD_TYPE=release" };
|
||||
String command[] = { "cmake", ".", /*"-DCMAKE_CXX_COMPILER=clang++",*/ "-DCMAKE_BUILD_TYPE=release" };
|
||||
if (runCommand(command, runtimePath, "antlr runtime cmake") == null)
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue