build ios --config-only
doesn't handle arm64 workaround logic
#141716
Labels
P2
Important issues not at the top of the work list
platform-ios
iOS applications specifically
team-ios
Owned by iOS platform team
tool
Affects the "flutter" command-line tool. See also t: labels.
triaged-ios
Triaged by iOS platform team
(This is extremely niche so we may never fix it, but filing in case it comes up again.)
STR:
flutter/packages
at [google_maps_flutter] Restore the arm64 workaround packages#5915, or whatever hash that lands as.cd
intopackages/google_maps_flutter/google_maps_flutter_ios/examples/ios12
git clean -xfd .
flutter build ios --debug --no-codesign --config-only
The build fails at this point. If you look at
Generated.xcconfig
it will showEXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
Then do:
6.
flutter build ios --debug --no-codesign
Now
Generated.xcconfig
correctly shows arm64 as an excluded architecture, and builds from the Xcode UI will work.Expected behavior here is that
--config-only
is enough to successfully build from Xcode, with a correctGenerated.xccofig
.The text was updated successfully, but these errors were encountered: