summaryrefslogtreecommitdiff
path: root/sci-libs/tensorflow/files/tensorflow-1.8.0-0002-dont-strip.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/tensorflow/files/tensorflow-1.8.0-0002-dont-strip.patch')
-rw-r--r--sci-libs/tensorflow/files/tensorflow-1.8.0-0002-dont-strip.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/sci-libs/tensorflow/files/tensorflow-1.8.0-0002-dont-strip.patch b/sci-libs/tensorflow/files/tensorflow-1.8.0-0002-dont-strip.patch
deleted file mode 100644
index 9f828f3c8efc..000000000000
--- a/sci-libs/tensorflow/files/tensorflow-1.8.0-0002-dont-strip.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff --git a/tensorflow/BUILD b/tensorflow/BUILD
-index cfafffdd13..8ed22ccfea 100644
---- a/tensorflow/BUILD
-+++ b/tensorflow/BUILD
-@@ -470,7 +470,7 @@ tf_cc_shared_object(
- # excludes all but a subset of function names.
- # On MacOS, the linker does not support version_script, but has an
- # an "-exported_symbols_list" command. -z defs disallows undefined
--# symbols in object files and -s strips the output.
-+# symbols in object files.
-
- tf_cc_shared_object(
- name = "libtensorflow.so",
-@@ -484,7 +484,6 @@ tf_cc_shared_object(
- "//tensorflow:windows_msvc": [],
- "//conditions:default": [
- "-z defs",
-- "-s",
- "-Wl,--version-script", # This line must be directly followed by the version_script.lds file
- "$(location //tensorflow/c:version_script.lds)",
- ],
-@@ -510,7 +509,6 @@ tf_cc_shared_object(
- "//tensorflow:windows_msvc": [],
- "//conditions:default": [
- "-z defs",
-- "-s",
- "-Wl,--version-script", # This line must be directly followed by the version_script.lds file
- "$(location //tensorflow:tf_version_script.lds)",
- ],