Skip to content

Commit

Permalink
SourceBuilder only uses clang++-10
Browse files Browse the repository at this point in the history
  • Loading branch information
squarefk committed Sep 16, 2021
1 parent 9009623 commit 4102df4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/taichi/lang/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ def has_pytorch():

from distutils.spawn import find_executable

# Taichi itself uses llvm-10.0.0 to compile.
_clangpp_candidates = [
'clang++-8', 'clang++-10', 'clang++-11', 'clang++-12', 'clang++'
'clang++-10'
]
_clangpp_presence = None
for c in _clangpp_candidates:
Expand Down

0 comments on commit 4102df4

Please sign in to comment.