Remove --exclude-libs,ALL from TFLite Android linkopts

PiperOrigin-RevId: 260230272
This commit is contained in:
Jared Duke 2019-07-26 15:57:40 -07:00 committed by TensorFlower Gardener
parent 322ec054af
commit 5128ca4b38

View File

@ -51,7 +51,6 @@ def tflite_linkopts_unstripped():
return select({ return select({
"//tensorflow:android": [ "//tensorflow:android": [
"-Wl,--no-export-dynamic", # Only inc syms referenced by dynamic obj. "-Wl,--no-export-dynamic", # Only inc syms referenced by dynamic obj.
"-Wl,--exclude-libs,ALL", # Exclude syms in all libs from auto export.
"-Wl,--gc-sections", # Eliminate unused code and data. "-Wl,--gc-sections", # Eliminate unused code and data.
"-Wl,--as-needed", # Don't link unused libs. "-Wl,--as-needed", # Don't link unused libs.
], ],