aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2019-04-15 13:33:04 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-04-15 13:33:04 -0700
commitfd816272fc70b83308ae2b045f23a63a9357ef2d (patch)
tree38d53c04bd4942f78569cc6827a3a39a3e8b2f1b
parent80d74b98a3ad8d5f94e7871ef75b27a2542e159f (diff)
parent46b6cec4508c79c0506fc9f2b7e2168ba6f3882e (diff)
downloadndk-r20-beta3.tar.gz
Merge "Fix typo in argument name in doc." into ndk-release-r20ndk-r20-beta3
am: 46b6cec450 Change-Id: I8d41619c3d0a50284b73383ccb91b0a23d9ff705
-rw-r--r--docs/BuildSystemMaintainers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/BuildSystemMaintainers.md b/docs/BuildSystemMaintainers.md
index a2b1f182e..fde6fdfd6 100644
--- a/docs/BuildSystemMaintainers.md
+++ b/docs/BuildSystemMaintainers.md
@@ -458,8 +458,8 @@ these symbols from a shared library. If this library was built with the wrong
unwinder, it is possible for one unwinder to call into the other. As they are
not compatible, this will likely result in either a crash or a failed unwind. To
avoid this problem, libraries should always be built with
-`-Wl,--exclude-library,libgcc.a` and `-Wl,--exclude-library,libunwind.a` (the
-latter is only necessary for 32-bit ARM) to ensure that unwind symbols are not
+`-Wl,--exclude-libs,libgcc.a` and `-Wl,--exclude-libs,libunwind.a` (the latter
+is only necessary for 32-bit ARM) to ensure that unwind symbols are not
re-exported from shared libraries.
Even with the above precautions, it is still possible for an improperly built