diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-05-12 12:43:03 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-05-12 12:43:03 +0200 |
| commit | 81b26569e55697361fd13e1a951d551b1dbd13a8 (patch) | |
| tree | 9f8e3dc6c1c838d6ee7a2790581480cc52dff7a5 /src | |
| parent | 76bbca2808b32432fda13337a80decc5b9a9d9d5 (diff) | |
| download | box64-81b26569e55697361fd13e1a951d551b1dbd13a8.tar.gz box64-81b26569e55697361fd13e1a951d551b1dbd13a8.zip | |
[WRAPPER] Added libOpenCL.so as synonym
Diffstat (limited to 'src')
| -rw-r--r-- | src/library_list.h | 1 | ||||
| -rw-r--r-- | src/wrapped/wrappedopencl.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/library_list.h b/src/library_list.h index c02465b5..3126717a 100644 --- a/src/library_list.h +++ b/src/library_list.h @@ -98,6 +98,7 @@ GO("openal.so", openal) GO("libalut.so.0", alut) GO("libalure.so.1", alure) GO("libOpenCL.so.1", opencl) +GO("libOpenCL.so", opencl) //GO("libjpeg.so.8", libjpeg) //GO("libjpeg.so.62", libjpeg62) //GO("libturbojpeg.so.0", turbojpeg) diff --git a/src/wrapped/wrappedopencl.c b/src/wrapped/wrappedopencl.c index 9ac1fd70..22a0e413 100644 --- a/src/wrapped/wrappedopencl.c +++ b/src/wrapped/wrappedopencl.c @@ -19,6 +19,7 @@ const char* openclName = "libOpenCL.so.1"; #define LIBNAME opencl +#define ALTNAME "libOpenCL.so" #include "generated/wrappedopencltypes.h" |