Fix Xcode check (#306)

This commit is contained in:
Dan Field 2019-08-26 21:53:46 -07:00 committed by GitHub
parent 6a9ad927d5
commit 58d85da77c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,5 +23,8 @@ declare_args() {
declare_args() {
# Xcode is required if using bitcode, and Xcode builds cannot use goma.
use_xcode = enable_bitcode && !bitcode_marker
# TODO(dnfield): We shouldn't need Xcode for bitcode_marker builds, but we do
# until libpng and dart have explicitly added LLVM asm sections to their
# assembly sources. https://github.com/flutter/flutter/issues/39281
use_xcode = enable_bitcode
}