Commit fce76bcf authored by Ryan Macnak's avatar Ryan Macnak Committed by GitHub

Revert "Update --local-engine to account for changed host architecture of...

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

This reverts commit 3f514fcf.
parent 16ae29b5
7480e32854606e554ae37f8bd241c050bdc565c4 f56da86f9807a7d4c924cdb5a28d77baad0537b1
...@@ -212,7 +212,7 @@ class LocalEngineArtifacts extends Artifacts { ...@@ -212,7 +212,7 @@ class LocalEngineArtifacts extends Artifacts {
String _genSnapshotPath(TargetPlatform platform, BuildMode mode) { String _genSnapshotPath(TargetPlatform platform, BuildMode mode) {
String clang; String clang;
if (platform == TargetPlatform.ios) { if (platform == TargetPlatform.ios || mode == BuildMode.debug) {
clang = 'clang_x64'; clang = 'clang_x64';
} else { } else {
clang = getCurrentHostPlatform() == HostPlatform.darwin_x64 ? 'clang_i386' : 'clang_x86'; 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