Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/openmp
diff options
context:
space:
mode:
authorJoseph Huber <jhuber6@vols.utk.edu>2022-10-13 15:39:04 +0300
committerJoseph Huber <jhuber6@vols.utk.edu>2022-10-13 15:41:14 +0300
commite801e8f3e703f572e500aa360caa16e0eb6cbba6 (patch)
tree22229f8867fc3e2825ee18feb4ff160a029d0993 /openmp
parentcc49a74a7bc6790d3502d1c2666712c1ef0c211b (diff)
[Libomptarget] Remove undefined 'omp_get_interop_rc_desc' symbol from exports list
Summary: A recent patch made undefined symbols in version scripts cause errors by default. The `omp_get_interop_rc_desc` function is declared but not defined, so it is undefined in the final link unit. This patch removes it from the exports list, it should be added back in when actually defined and used.
Diffstat (limited to 'openmp')
-rw-r--r--openmp/libomptarget/src/exports1
1 files changed, 0 insertions, 1 deletions
diff --git a/openmp/libomptarget/src/exports b/openmp/libomptarget/src/exports
index 24f81b638464..7fc7e812a31a 100644
--- a/openmp/libomptarget/src/exports
+++ b/openmp/libomptarget/src/exports
@@ -54,7 +54,6 @@ VERS1.0 {
omp_get_interop_int;
omp_get_interop_name;
omp_get_interop_type_desc;
- omp_get_interop_rc_desc;
__tgt_interop_init;
__tgt_interop_use;
__tgt_interop_destroy;