aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Amit Patankar <amitpatankar@google.com>2018-06-04 14:26:09 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-04 14:28:52 -0700
commit3c87b99d8c8052c3b6d67190bca14ea89137221a (patch)
tree967671ad15143192de0b6019283506086913d279 /tools
parent204fcd9a002aa8678c42d076553e38d69e8724a6 (diff)
Remove --distinct_host_configuration=false from tools/bazel.rc
Don't use --distinct_host_configuration=false by default, because it would break cross compiling, like android build and Raspberry Pi build. Instead, we add it for builds that we know they have the same host and target platforms. PiperOrigin-RevId: 199194260
Diffstat (limited to 'tools')
-rw-r--r--tools/bazel.rc6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/bazel.rc b/tools/bazel.rc
index 03aa52da1f..1c1e6afb65 100644
--- a/tools/bazel.rc
+++ b/tools/bazel.rc
@@ -1,14 +1,8 @@
-# By default, we don't distinct target and host platfroms.
-# When doing cross compilation, use --config=cross_compile to distinct them.
-build --distinct_host_configuration=false
-build:cross_compile --distinct_host_configuration=true
-
# Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the
# target CPU to build transient dependencies correctly. See
# https://docs.bazel.build/versions/master/user-manual.html#flag--fat_apk_cpu
build:android --crosstool_top=//external:android/crosstool
build:android --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
-build:android --config=cross_compile
build:android_arm --config=android
build:android_arm --cpu=armeabi-v7a
build:android_arm --fat_apk_cpu=armeabi-v7a