forked from protocolbuffers/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update linker version script globs to include
*pb::*
instead of jus…
…t `pb::*` For some reason it seems that `pb::*` does not match the type info symbol for `pb::CppFeatures`. Ordinarily this does not seem to cause problems, but we received a report about it causing issues with sanitizers: https://groups.google.com/g/protobuf/c/ytkvjXXdG2g/m/hk7a5JnCAwAJ For clarity I made the same change for `upb::`, though I don't think this is strictly necessary since it is covered by the `*pb::*` glob. PiperOrigin-RevId: 642390692
- Loading branch information
1 parent
a6d4827
commit 435c182
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
global: | ||
extern "C++" { | ||
*google*; | ||
pb::*; | ||
*pb::*; | ||
}; | ||
scc_info_*; | ||
descriptor_table_*; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
global: | ||
extern "C++" { | ||
*google*; | ||
pb::*; | ||
*pb::*; | ||
}; | ||
scc_info_*; | ||
descriptor_table_*; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
global: | ||
extern "C++" { | ||
*google*; | ||
pb::*; | ||
upb::*; | ||
*pb::*; | ||
*upb::*; | ||
}; | ||
scc_info_*; | ||
descriptor_table_*; | ||
|