comparison llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst @ 173:0572611fdcc8 llvm10 llvm12

reorgnization done
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 11:55:54 +0900
parents 1d019706d866
children c4bab56944e8
comparison
equal deleted inserted replaced
172:9fbae9c8bf63 173:0572611fdcc8
21 machine. 21 machine.
22 22
23 To specify the architecture that you want to target, we use a string 23 To specify the architecture that you want to target, we use a string
24 called a "target triple". This takes the form 24 called a "target triple". This takes the form
25 ``<arch><sub>-<vendor>-<sys>-<abi>`` (see the `cross compilation docs 25 ``<arch><sub>-<vendor>-<sys>-<abi>`` (see the `cross compilation docs
26 <http://clang.llvm.org/docs/CrossCompilation.html#target-triple>`_). 26 <https://clang.llvm.org/docs/CrossCompilation.html#target-triple>`_).
27 27
28 As an example, we can see what clang thinks is our current target 28 As an example, we can see what clang thinks is our current target
29 triple: 29 triple:
30 30
31 :: 31 ::