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

Unified Diff: native_client_sdk/src/doc/devguide/devcycle/dynamic-loading.rst

Issue 511963004: Rearrange tables so that navigation can be added back to certain pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix items from review. Created 6 years, 3 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
Index: native_client_sdk/src/doc/devguide/devcycle/dynamic-loading.rst
diff --git a/native_client_sdk/src/doc/devguide/devcycle/dynamic-loading.rst b/native_client_sdk/src/doc/devguide/devcycle/dynamic-loading.rst
index d0242f004a8569c1cf289e121143dd789f258127..519ce1e3a8116d2bfc1d5b30270183e5328962f4 100644
--- a/native_client_sdk/src/doc/devguide/devcycle/dynamic-loading.rst
+++ b/native_client_sdk/src/doc/devguide/devcycle/dynamic-loading.rst
@@ -7,9 +7,6 @@ Dynamic Linking and Loading with glibc
:backlinks: none
:depth: 2
-Introduction
-============
-
.. Note::
:class: caution
@@ -31,31 +28,30 @@ C standard libraries: glibc and newlib
The Native Client SDK comes with two C standard libraries --- glibc and
newlib. These libraries are described in the table below.
-+--------+----------+-------------+--------------------------------------------+
-| Library| Linking | License | Description |
-+========+==========+=============+============================================+
-| glibc | dynamic | GNU Lesser | glibc is the GNU implementation of the |
-| | or static| General | POSIX_ standard runtime library for the C |
-| | | Public | programming language. Designed for |
-| | | License | portability and performance, glibc is one |
-| | | (LGPL) | of the most popular implementations of the |
-| | | | C library. It is comprised of a set of |
-| | | | interdependent libraries including libc, |
-| | | | libpthreads, libdl, and others. For |
-| | | | documentation, FAQs, and additional |
-| | | | information about glibc, see GLIBC_ |
-+--------+----------+-------------+--------------------------------------------+
-| newlib | static | Berkeley | newlib is a C library intended for use in |
-| | | Software | embedded systems. Like glibc, newlib is a |
-| | | Distribution| conglomeration of several library parts. |
-| | | (BSD) type | It is available for use under BSD-type free|
-| | | free | software licenses, which generally makes it|
-| | | software | more suitable to link statically in |
-| | | licenses | commercial, closed-source applications. For|
-| | | | documentation, FAQs, and additional |
-| | | | information about newlib, see the newlib_ |
-| | | | documentation. |
-+--------+----------+-------------+--------------------------------------------+
++-----------------------------------------------------+----------+-------------+
+| Library | Linking | License |
++=====================================================+==========+=============+
+|glibc | dynamic | GNU Lesser |
+| The GNU implementation of the POSIX_ standard | or static| General |
+| runtime library for the C programming language. | | Public |
+| Designed for portability and performance, glibc is | | License |
+| one of the most popular implementations of the C | | (LGPL) |
+| library. It is comprised of a set of interdependent| | |
+| libraries including libc, libpthreads, libdl, and | | |
+| others. For documentation, FAQs, and additional | | |
+| information about glibc, see GLIBC_. | | |
++-----------------------------------------------------+----------+-------------+
+|newlib | static | Berkeley |
+| newlib is a C library intended for use in embedded | | Software |
+| systems. Like glibc, newlib is a conglomeration of | | Distribution|
+| several libraries. It is available for use under | | (BSD) type |
+| BSD-type free software licenses, which generally | | free |
+| makes it more suitable to link statically in | | software |
+| commercial, closed-source applications. For | | licenses |
+| documentation, FAQs, and additional information | | |
+| about newlib, see newlib_. | | |
++-----------------------------------------------------+----------+-------------+
+
For proprietary (closed-source) applications, your options are to either
statically link to newlib, or dynamically link to glibc. We recommend

Powered by Google App Engine
This is Rietveld 408576698