Skip to content

Commit

Permalink
build: workaround picky LLVM ld
Browse files Browse the repository at this point in the history
```
  CXXLD libgxs_mysql_adaptor.la
ld: error: version script assignment of 'global' to symbol
'get_module' failed: symbol not defined
```
  • Loading branch information
jengelh committed Sep 21, 2024
1 parent 8647642 commit d2beb3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions default.sym
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ global:
HOOK_*;
PROC_*;
SVC_*;
get_module;
pam_sm_authenticate;
pam_sm_setcred;
get_module*;
pam_sm_authenticate*;
pam_sm_setcred*;
/* Stay global so the linker can merge definitions to satisfy ODR */
extern "C++" {
std::*::_S_*;
Expand Down

0 comments on commit d2beb3b

Please sign in to comment.