Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de98f6e3 authored by Dirk Dougherty's avatar Dirk Dougherty
Browse files

Doc change: add note about future instruction set support.

Change-Id: If954c1020301f5935c8d9328a531afdddbdad8db
parent fb473bb6
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ function toggleDiv(link) {
    //$(".toggleme", toggleable).slideDown("fast");
    toggleable.removeClass("closed");
    toggleable.addClass("open");
    $(".toggle-img", toggleable).attr("title", "hide").attr("src", "/assets/images/triangle-opened.png");
    $(".toggle-img", toggleable).attr("title", "hide").attr("src", "{@docRoot}assets/images/triangle-opened.png");
  } else {
    //$(".toggleme", toggleable).slideUp("fast");
    toggleable.removeClass("open");
@@ -208,6 +208,12 @@ future versions of the Android platform, starting from Android 1.5 </li>
optional support for NEON/VFPv3-D32 instructions)</li>
</ul>

<p>Future releases of the NDK will also support:</p>

<ul>
<li>x86 instructions (see CPU-ARCH-ABIS.TXT for more information)</li>
</ul>

<p>ARMv5TE machine code will run on all ARM-based Android devices. ARMv7-A will
run only on devices such as the Verizon Droid or Google Nexus One that have a
compatible CPU. The main difference between the two instruction sets is that
@@ -216,7 +222,7 @@ either or both of the instruction sets &mdash; ARMv5TE is the default, but
switching to ARMv7-A is as easy as adding a single line to the application's
Application.mk file, without needing to change anything else in the file. You
can also build for both architectures at the same time and have everything
stored in the final <code>.apk</code>. Complete information is provided in the
stored in the final <code>.apk</code>. For complete information is provided in the
CPU-ARCH-ABIS.TXT in the NDK package. </p>

<p>The NDK provides stable headers for libc (the C library), libm (the Math