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
Fixes: intel#28
By convention on Linux if library is going to be linked against it should have:
* real name, which is usually libigdgmm.so.x.y.z, x.y.z is a library version
* soname which is libigdgmm.so.x, usually that's a symbolic link to real name
* linker name which is libigdgmm.so, usually that's a symbolic link to soname
Building library without the above convention is applicable only if library is
supposed to be dlopen(), i.e. for drivers and similar things.
Since gmmlib will be linked against rahter than dlopen-ed it should qualify to
the above Linux convention. This fix makes exactly that. CMake will automatically
create required symbolc links (soname and linker name).
This commit also bumps up the version of gmmlib.
Signed-off-by: Dmitry Rogozhkin <dmitry.v.rogozhkin@intel.com>
0 commit comments