This is an automated email from the ASF dual-hosted git repository.

haibin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new c09bbc1  Fix Horovod build error due to missing exported symbols 
(#18958)
c09bbc1 is described below

commit c09bbc143289afb94f1e3dff925c29ebe1b8a1f8
Author: Leonard Lausen <[email protected]>
AuthorDate: Wed Aug 19 16:16:50 2020 +0000

    Fix Horovod build error due to missing exported symbols (#18958)
    
    * Fix Horovod build error due to missing exported symbols
    
    Resubmit to master branch 
https://github.com/apache/incubator-mxnet/commit/a967d37f10239f6e439004c0dcf3d90f307a8ddf
    
    * Remove Java related symbols
---
 cmake/libmxnet.sym | 14 ++++----------
 cmake/libmxnet.ver | 14 ++++----------
 2 files changed, 8 insertions(+), 20 deletions(-)

diff --git a/cmake/libmxnet.sym b/cmake/libmxnet.sym
index 0ddf63f..9f45fb7 100644
--- a/cmake/libmxnet.sym
+++ b/cmake/libmxnet.sym
@@ -1,15 +1,9 @@
-MX*
-NN*
-_MX*
-_NN*
-mx*
-nn*
-_mx*
-_nn*
-Java_org_apache_mxnet*
+*MX*
+*NN*
+*mx*
+*nn*
 *NDArray*
 *Engine*Get*
 *Storage*Get*
 *on_enter_api*
 *on_exit_api*
-*MXAPISetLastError*
diff --git a/cmake/libmxnet.ver b/cmake/libmxnet.ver
index 560549c..82e8036 100644
--- a/cmake/libmxnet.ver
+++ b/cmake/libmxnet.ver
@@ -1,19 +1,13 @@
 {
     global:
-        NN*;
-        MX*;
-        _NN*;
-        _MX*;
-        nn*;
-        mx*;
-        _nn*;
-        _mx*;
-        Java_org_apache_mxnet*;
+        *NN*;
+        *MX*;
+        *nn*;
+        *mx*;
         *NDArray*;
         *Engine*Get*;
         *Storage*Get*;
         *on_enter_api*;
         *on_exit_api*;
-        *MXAPISetLastError*;
     local: *;
 };

Reply via email to