STT-tensorflow/tensorflow/lite/java/tflite_version_script.lds
A. Unique TensorFlower ac74e1746a Export google_find_phdr in JNI library
This is necessary in some circumstances when building internally, and is harmless otherwise.

PiperOrigin-RevId: 358372796
Change-Id: Ib53a5bc1e45acb7fb3fceee91ea25fe7e69283c4
2021-02-19 03:39:36 -08:00

16 lines
263 B
Plaintext

VERS_1.0 {
# Export JNI and native C symbols.
global:
Java_*;
JNI_OnLoad;
JNI_OnUnload;
TfLite*;
# Required for libunwind. This is needed if built and then run internally.
google_find_phdr;
# Hide everything else.
local:
*;
};