ensure xla is turned off (#16974)

Co-authored-by: Sinan81 <sbulut@3vgeomatics.com>
This commit is contained in:
Sinan 2020-06-06 13:51:19 -07:00 committed by GitHub
parent 7b6e1ae9d3
commit 73d13461b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -525,6 +525,13 @@ def configure(self, spec, prefix):
@run_after('configure')
def post_configure_fixes(self):
spec = self.spec
# make sure xla is actually turned off
if spec.satisfies('~xla'):
filter_file(r'--define with_xla_support=true',
r'--define with_xla_support=false',
'.tf_configure.bazelrc')
if spec.satisfies('@1.5.0: ~android'):
# env variable is somehow ignored -> brute force
# TODO: find a better solution