aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-03-23 03:37:05 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-23 03:39:49 -0700
commita3f27a5898a3c1b28e6a3fb2e6e6bd75644c522e (patch)
tree6c413809e42fa33a6e464230de784755178d34b1 /tensorflow/BUILD
parent16d92bba68ea6f109c2ca1a4a675d0eb961a8b72 (diff)
Internal change
PiperOrigin-RevId: 190199534
Diffstat (limited to 'tensorflow/BUILD')
-rw-r--r--tensorflow/BUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/BUILD b/tensorflow/BUILD
index e0d86997ff..c75bf8abab 100644
--- a/tensorflow/BUILD
+++ b/tensorflow/BUILD
@@ -767,7 +767,7 @@ tf_cc_shared_object(
linkopts = select({
"//tensorflow:darwin": [
"-Wl,-exported_symbols_list", # This line must be directly followed by the exported_symbols.lds file
- "//tensorflow/c:exported_symbols.lds",
+ "$(location //tensorflow/c:exported_symbols.lds)",
"-Wl,-install_name,@rpath/libtensorflow.so",
],
"//tensorflow:windows": [],
@@ -776,7 +776,7 @@ tf_cc_shared_object(
"-z defs",
"-s",
"-Wl,--version-script", # This line must be directly followed by the version_script.lds file
- "//tensorflow/c:version_script.lds",
+ "$(location //tensorflow/c:version_script.lds)",
],
}),
deps = [
@@ -794,7 +794,7 @@ tf_cc_shared_object(
linkopts = select({
"//tensorflow:darwin": [
"-Wl,-exported_symbols_list", # This line must be directly followed by the exported_symbols.lds file
- "//tensorflow:tf_exported_symbols.lds",
+ "$(location //tensorflow:tf_exported_symbols.lds)",
],
"//tensorflow:windows": [],
"//tensorflow:windows_msvc": [],
@@ -802,7 +802,7 @@ tf_cc_shared_object(
"-z defs",
"-s",
"-Wl,--version-script", # This line must be directly followed by the version_script.lds file
- "//tensorflow:tf_version_script.lds",
+ "$(location //tensorflow:tf_version_script.lds)",
],
}),
deps = [