Commit 1650420d authored by Ryan Macnak's avatar Ryan Macnak Committed by GitHub

Update --local-engine to account for changed host architecture of 32-bit...

Update --local-engine to account for changed host architecture of 32-bit Android debug builds. (#11263)

Roll engine to 03e642bc8940441bbad5c2fb7d3ca868c1fdad54.
parent c838c19e
f56da86f9807a7d4c924cdb5a28d77baad0537b1
03e642bc8940441bbad5c2fb7d3ca868c1fdad54
......@@ -212,7 +212,7 @@ class LocalEngineArtifacts extends Artifacts {
String _genSnapshotPath(TargetPlatform platform, BuildMode mode) {
String clang;
if (platform == TargetPlatform.ios || mode == BuildMode.debug) {
if (platform == TargetPlatform.ios) {
clang = 'clang_x64';
} else {
clang = getCurrentHostPlatform() == HostPlatform.darwin_x64 ? 'clang_i386' : 'clang_x86';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment