Skip to content

Commit dc1a2cb

Browse files
committed
[lldb][windows] Cover more symbols in LLDB_EXPORT_ALL_SYMBOLS
Followup to llvm#67628 that relaxes the symbol regex a bit to cover more lldb_private symbols.
1 parent a5b45b4 commit dc1a2cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/scripts/msvc_extract_private_symbols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def extract_symbols(nm_path: str, lib: str):
1818
library to extract from."""
1919

2020
# Matches mangled symbols containing 'lldb_private'.
21-
lldb_sym_re = r"0* [BT] (?P<symbol>[?]+[^?].*lldb_private.*)"
21+
lldb_sym_re = r"[0-9a-zA-Z]* [BT] (?P<symbol>[?]+[^?].*lldb_private.*)"
2222

2323
# '-g' means we only get global symbols.
2424
# '-p' do not waste time sorting the symbols.

0 commit comments

Comments
 (0)