We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fbe18 commit 7139ebcCopy full SHA for 7139ebc
pyop2/compilation.py
@@ -155,7 +155,7 @@ def sniff_compiler(exe, comm=mpi.COMM_WORLD):
155
# Find the name of the compiler family
156
if output.startswith("gcc") or output.startswith("g++"):
157
name = "GNU"
158
- elif output.startswith("clang"):
+ elif output.startswith("clang") or output.startswith("Homebrew clang"):
159
name = "clang"
160
elif output.startswith("Apple LLVM") or output.startswith("Apple clang"):
161
0 commit comments