Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: third_party/protobuf/README.chromium

Issue 2759423004: Protobuf: Move thread-local global data to globals.cc (Closed)
Patch Set: Address pkasting@'s comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/protobuf/BUILD.gn ('k') | third_party/protobuf/patches/0012-extract-globals.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/protobuf/README.chromium
diff --git a/third_party/protobuf/README.chromium b/third_party/protobuf/README.chromium
index edb4d6f1c58234adf3daceaf8376b142b0117a49..3d69cc4a9b4bdb320ec9dd54297726fa48ae36e1 100644
--- a/third_party/protobuf/README.chromium
+++ b/third_party/protobuf/README.chromium
@@ -29,10 +29,13 @@ Steps used to create the current version:
5. Extract all globals to src/google/protobuf/globals.cc and prefix these
symbols with 'cr_'. On Linux, the command
- $ objdump -t -j.data -j.bss obj/third_party/protobuf/libprotobuf_lite.a
+ $ objdump -t -j.data -j.bss -j.tdata -j.tbss \
+ obj/third_party/protobuf/libprotobuf_lite.a
should produce the output
+ objdump: section '.tbss' mentioned in a -j option, but not found in any input file
+ objdump: section '.tdata' mentioned in a -j option, but not found in any input file
objdump: section '.bss' mentioned in a -j option, but not found in any input file
objdump: section '.data' mentioned in a -j option, but not found in any input file
« no previous file with comments | « third_party/protobuf/BUILD.gn ('k') | third_party/protobuf/patches/0012-extract-globals.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698