Skip to content

Commit 076aa5e

Browse files
committed
scripts: allow exporting in6addr_any
This symbol ends up exported when building with LTO.
1 parent e7bd1bf commit 076aa5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/devtools/symbol-check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050

5151
# Ignore symbols that are exported as part of every executable
5252
IGNORE_EXPORTS = {
53-
'environ', '_environ', '__environ', '_fini', '_init', 'stdin',
54-
'stdout', 'stderr',
53+
'environ', '_environ', '__environ', '_fini', '_init', 'in6addr_any',
54+
'stdin', 'stdout', 'stderr',
5555
}
5656

5757
# Expected linker-loader names can be found here:

0 commit comments

Comments
 (0)