From: Andreas Beckmann Date: Thu, 16 Dec 2021 15:06:14 +0000 (+0100) Subject: [PATCH 128/144] add POCL_EXPORT to additional symbols needed by the vulkan device X-Git-Tag: archive/raspbian/1.8-3+rpi1^2~25 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bee56c7f40734f32d004072ee015a898855e02c4;p=pocl.git [PATCH 128/144] add POCL_EXPORT to additional symbols needed by the vulkan device Gbp-Pq: Name 0128-add-POCL_EXPORT-to-additional-symbols-needed-by-the-.patch --- diff --git a/include/pocl_cache.h b/include/pocl_cache.h index 6980e0e..1da6a5b 100644 --- a/include/pocl_cache.h +++ b/include/pocl_cache.h @@ -38,6 +38,7 @@ extern "C" { int pocl_cache_init_topdir (); +POCL_EXPORT int pocl_cache_create_program_cachedir(cl_program program, unsigned device_i, const char* preprocessed_source, size_t source_len, @@ -45,6 +46,7 @@ pocl_cache_create_program_cachedir(cl_program program, unsigned device_i, void pocl_cache_cleanup_cachedir(cl_program program); +POCL_EXPORT int pocl_cache_tempname (char *path_template, const char *suffix, int *fd); int pocl_cache_create_tempdir(char* path); @@ -105,6 +107,7 @@ void pocl_cache_kernel_cachedir (char *kernel_cachedir_path, // these two required by llvm API +POCL_EXPORT void pocl_cache_program_bc_path(char* program_bc_path, cl_program program, unsigned device_i);