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
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
This is not true for Fedora 26 (and for many 64-bit systems), which put the shared library files into 'lib64' subdirectories. For example, on my system, it is located in the /usr/lib64 directory.
Of course you may submit a PR.
How do you handle libtcmalloc.so.3 and libtcmalloc.so.4 in the same directory?
You might also offering to override the directory with a variable from config.mk
The wildcard given by the current Makefile failed to detect the gperftools/jemalloc malloc libraries.
Currently, it uses the following snippet to detect these libraries, which assumes the
.so
file is located in the '*/lib' subdirectories.https://github.com/apache/incubator-mxnet/blob/35ceea73ccc1acfb2ec62cdaa841822e51c13456/Makefile#L168-L213
This is not true for Fedora 26 (and for many 64-bit systems), which put the shared library files into 'lib64' subdirectories. For example, on my system, it is located in the
/usr/lib64
directory.I suggest to using the following snippet to replace the above-mentioned codes.
It simply replaces 'lib' into 'lib*' in the wildcard matching.
The text was updated successfully, but these errors were encountered: