We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 483fd00 commit 654620bCopy full SHA for 654620b
1 file changed
engine/src/flutter/build/copy_info_plist.py
@@ -27,6 +27,10 @@ def get_clang_version():
27
clang_executable = str(
28
os.path.join(_src_root_dir, 'flutter', 'buildtools', 'mac-x64', 'clang', 'bin', 'clang++')
29
)
30
+ if not os.path.exists(clang_executable):
31
+ clang_executable = str(
32
+ os.path.join(_src_root_dir, 'flutter', 'buildtools', 'mac-arm64', 'clang', 'bin', 'clang++')
33
+ )
34
version = subprocess.check_output([clang_executable, '--version'])
35
return version.splitlines()[0]
36
0 commit comments