diff options
| author | 2016-04-07 17:14:07 -0700 | |
|---|---|---|
| committer | 2016-04-07 17:35:18 -0700 | |
| commit | 59daf3559d10e36d3ced833e26f1c67b77a5bc85 (patch) | |
| tree | e855fba070e3aee13ee802ee1363894708976992 | |
| parent | e2ff842e2b054dbd7cee648e3c5a305fcf2525b2 (diff) | |
Remove obsolete note about libatomic.
There's only one GCC in any given NDK release, and it always has
libatomic.
Change-Id: Ifbdc10961c711a6ce27eab60ca2751a04a358a13
| -rw-r--r-- | docs/html/ndk/guides/cpp-support.jd | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/html/ndk/guides/cpp-support.jd b/docs/html/ndk/guides/cpp-support.jd index b340eade5dd1..173af28691b0 100644 --- a/docs/html/ndk/guides/cpp-support.jd +++ b/docs/html/ndk/guides/cpp-support.jd @@ -186,7 +186,7 @@ NDK to rebuild {@code libc++} from sources by adding the following line to your LIBCXX_FORCE_REBUILD := true </pre> -<h4>atomic support</h4> +<h4>Atomic support</h4> <p>If you include {@code <atomic>}, it's likely that you also need {@code libatomic}. If you are using {@code ndk-build}, add the following line:</p> @@ -201,10 +201,6 @@ LOCAL_LDLIBS += -latomic -latomic </pre> -<p class="note"><strong>Note: </strong>{@code -latomic} is only available for GCC 4.8. -Because Clang 3.5 and Clang 3.6 use GCC 4.8's headers and libraries, as well as its -{@code as} and {@code ld} options, those versions of Clang also get {@code -latomic}.</p> - <h4>Compatibility</h4> |