Skip to content

Commit

Permalink
Fix build of appsec helper with llvm's linker
Browse files Browse the repository at this point in the history
  • Loading branch information
cataphract committed Feb 5, 2025
1 parent 01b46dd commit 80904a0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions appsec/src/helper/helper.version
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
global:
appsec_helper_main;
appsec_helper_shutdown;
/* add the symbols here with wildcards because lld fails in case some of
* the symbols don't exist. This would generally be something to be
* encouraged, but we test if --Wl,--version-script is supported by the
* linker using this file and a program where these symbols are not
* defined */
appsec_helper_main*;
appsec_helper_shutdown*;
local: *;
};

0 comments on commit 80904a0

Please sign in to comment.