From 58873edb96a019767f4ac35b7da3f57e13125bbd Mon Sep 17 00:00:00 2001 From: Will Date: Sat, 14 Dec 2019 11:18:02 -0800 Subject: [PATCH] Update tensorflowlib/README.md, add more details about how to export c APIs for linux --- tensorflowlib/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflowlib/README.md b/tensorflowlib/README.md index 318e5dc9..1450dc44 100644 --- a/tensorflowlib/README.md +++ b/tensorflowlib/README.md @@ -81,5 +81,5 @@ TF_CAPI_EXPORT extern void UpdateEdge(TF_Graph* graph, TF_Output new_src, TF_Inp TF_CAPI_EXPORT extern void RemoveAllControlInputs(TF_Graph* graph, TF_Operation* op); ``` - - +For Linux version, these APIs symbols should also be put into `tensorflow/c/version_script.lds` to be exported. +Please refer to commit `https://github.com/SciSharp/tensorflow/commit/58122da06be3e7707500ad889dfd5c760a3e0424`