[PATCH] D145833: Switch ABI references to env/environment
Jacob Lambert via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 13 16:25:40 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb47d4df25c69: Switch ABI references to env/environment (authored by lamb-j).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145833/new/
https://reviews.llvm.org/D145833
Files:
clang/docs/CrossCompilation.rst
Index: clang/docs/CrossCompilation.rst
===================================================================
--- clang/docs/CrossCompilation.rst
+++ clang/docs/CrossCompilation.rst
@@ -77,12 +77,12 @@
go ahead, creating code for the host platform, which will break later
on when assembling or linking.
-The triple has the general format ``<arch><sub>-<vendor>-<sys>-<abi>``, where:
+The triple has the general format ``<arch><sub>-<vendor>-<sys>-<env>``, where:
* ``arch`` = ``x86_64``, ``i386``, ``arm``, ``thumb``, ``mips``, etc.
* ``sub`` = for ex. on ARM: ``v5``, ``v6m``, ``v7a``, ``v7m``, etc.
* ``vendor`` = ``pc``, ``apple``, ``nvidia``, ``ibm``, etc.
* ``sys`` = ``none``, ``linux``, ``win32``, ``darwin``, ``cuda``, etc.
- * ``abi`` = ``eabi``, ``gnu``, ``android``, ``macho``, ``elf``, etc.
+ * ``env`` = ``eabi``, ``gnu``, ``android``, ``macho``, ``elf``, etc.
The sub-architecture options are available for their own architectures,
of course, so "x86v7a" doesn't make sense. The vendor needs to be
@@ -97,8 +97,8 @@
that Clang doesn't know, like ``blerg``, it'll ignore and assume
``unknown``, which is not always desired, so be careful.
-Finally, the ABI option is something that will pick default CPU/FPU,
-define the specific behaviour of your code (PCS, extensions),
+Finally, the env (enviornment) option is something that will pick default
+CPU/FPU, define the specific behaviour of your code (PCS, extensions),
and also choose the correct library calls, etc.
CPU, FPU, ABI
@@ -198,6 +198,6 @@
uses hard-float), Clang will pick the ``armv7l-linux-gnueabi-ld``
(which uses soft-float) and linker errors will happen.
-The same is true if you're compiling for different ABIs, like ``gnueabi``
-and ``androideabi``, and might even link and run, but produce run-time
-errors, which are much harder to track down and fix.
+The same is true if you're compiling for different environments, like
+``gnueabi`` and ``androideabi``, and might even link and run, but produce
+run-time errors, which are much harder to track down and fix.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145833.504886.patch
Type: text/x-patch
Size: 2070 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230313/ac18c56d/attachment-0001.bin>
More information about the cfe-commits
mailing list