You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add linkstatic=True to several library Bazel config (#1355)
While checking the content of the tensorflow-io wheel, noticed that
there are several redundant .so files included:
```
inflating: tensorflow_io/core/kernels/gsmemcachedfs/libmemcached_file_block_cache.so
inflating: tensorflow_io/core/kernels/gsmemcachedfs/libgce_memcached_server_list_provider.so
inflating: tensorflow_io/core/kernels/gsmemcachedfs/libmemcached_file_system.so
inflating: tensorflow_io/core/kernels/avro/utils/libavro_utils.so
```
The reason was that linkstatic=True was not passed in bazel which caused
extra .so being built.
This PR removes those unneeded .so (they are compiled as static library instead).
Signed-off-by: Yong Tang <[email protected]>
0 commit comments