Linux: Take out hardcoded path to SO, use LD_LIBRARY_PATH or copy the SO

This commit is contained in:
Paul Hollinsky
2018-10-02 16:20:24 -04:00
parent 5bf50ddc00
commit 590a99d995
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef __DYNAMICLIB_LINUX_H_ #ifndef __DYNAMICLIB_LINUX_H_
#define __DYNAMICLIB_LINUX_H_ #define __DYNAMICLIB_LINUX_H_
#define icsneo_dynamicLibraryLoad() dlopen("/home/paulywog/Code/icsneonext/build/libicsneoc.so", RTLD_LAZY) #define icsneo_dynamicLibraryLoad() dlopen("libicsneoc.so", RTLD_LAZY)
#endif #endif