summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorKristi Rifenbark <kristi.rifenbark@gmail.com>2017-08-31 14:33:36 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-13 18:00:18 +0100
commit1d42e21db4d4bb1284e118903e1264b359b4438e (patch)
tree00ccd849e33450ccaff26e1d04d08f57e2db5f4a /documentation
parentd4ac657f8aa3c7dc4022df3dc3fc8499cffd03b9 (diff)
downloadpoky-1d42e21db4d4bb1284e118903e1264b359b4438e.tar.gz
ref-manual: Added missing variables to glossary
Fixed [YOCTO #10642] Added the following variables: BUILD_CC_ARCH BUILD_LD_ARCH BUILD_AS_ARCH BUILD_FC BUILD_LD BUILD_CCLD BUILD_STRIP (From yocto-docs rev: eb602d0a5fca67228607710d5d33873f1b0529f1) Signed-off-by: Kristi Rifenbark <kristi.rifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml106
1 files changed, 106 insertions, 0 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 2c6ebca102..2576b3a174 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -1457,6 +1457,51 @@
1457 </glossdef> 1457 </glossdef>
1458 </glossentry> 1458 </glossentry>
1459 1459
1460 <glossentry id='var-BUILD_AS_ARCH'><glossterm>BUILD_AS_ARCH</glossterm>
1461 <info>
1462 BUILD_AS_ARCH[doc] = "Specifies the architecture-specific assembler flags for the build host."
1463 </info>
1464 <glossdef>
1465 <para role="glossdeffirst">
1466<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1467 Specifies the architecture-specific assembler flags for
1468 the build host. By default, the value of
1469 <filename>BUILD_AS_ARCH</filename> is empty.
1470 </para>
1471 </glossdef>
1472 </glossentry>
1473
1474 <glossentry id='var-BUILD_CC_ARCH'><glossterm>BUILD_CC_ARCH</glossterm>
1475 <info>
1476 BUILD_CC_ARCH[doc] = "Specifies the architecture-specific C compiler flags for the build host."
1477 </info>
1478 <glossdef>
1479 <para role="glossdeffirst">
1480<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1481 Specifies the architecture-specific C compiler flags for
1482 the build host. By default, the value of
1483 <filename>BUILD_CC_ARCH</filename> is empty.
1484 </para>
1485 </glossdef>
1486 </glossentry>
1487
1488 <glossentry id='var-BUILD_CCLD'><glossterm>BUILD_CCLD</glossterm>
1489 <info>
1490 BUILD_CCLD[doc] = "Specifies the linker command to be used for the build host when the C compiler is being used as the linker."
1491 </info>
1492 <glossdef>
1493 <para role="glossdeffirst">
1494<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1495 Specifies the linker command to be used for the build host
1496 when the C compiler is being used as the linker. By default,
1497 <filename>BUILD_CCLD</filename> points to GCC and passes as
1498 arguments the value of
1499 <link linkend='var-BUILD_CC_ARCH'><filename>BUILD_CC_ARCH</filename></link>,
1500 assuming <filename>BUILD_CC_ARCH</filename> is set.
1501 </para>
1502 </glossdef>
1503 </glossentry>
1504
1460 <glossentry id='var-BUILD_CFLAGS'><glossterm>BUILD_CFLAGS</glossterm> 1505 <glossentry id='var-BUILD_CFLAGS'><glossterm>BUILD_CFLAGS</glossterm>
1461 <info> 1506 <info>
1462 BUILD_CFLAGS[doc] = "Specifies the flags to pass to the C compiler when building for the build host." 1507 BUILD_CFLAGS[doc] = "Specifies the flags to pass to the C compiler when building for the build host."
@@ -1506,6 +1551,52 @@
1506 </glossdef> 1551 </glossdef>
1507 </glossentry> 1552 </glossentry>
1508 1553
1554 <glossentry id='var-BUILD_FC'><glossterm>BUILD_FC</glossterm>
1555 <info>
1556 BUILD_FC[doc] = "Specifies the Fortran compiler command for the build host."
1557 </info>
1558 <glossdef>
1559 <para role="glossdeffirst">
1560<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1561 Specifies the Fortran compiler command for the build host.
1562 By default, <filename>BUILD_FC</filename> points to
1563 Gfortran and passes as arguments the value of
1564 <link linkend='var-BUILD_CC_ARCH'><filename>BUILD_CC_ARCH</filename></link>,
1565 assuming <filename>BUILD_CC_ARCH</filename> is set.
1566 </para>
1567 </glossdef>
1568 </glossentry>
1569
1570 <glossentry id='var-BUILD_LD'><glossterm>BUILD_LD</glossterm>
1571 <info>
1572 BUILD_LD[doc] = "Specifies the linker command for the build host."
1573 </info>
1574 <glossdef>
1575 <para role="glossdeffirst">
1576<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1577 Specifies the linker command for the build host. By default,
1578 <filename>BUILD_LD</filename> points to the GNU linker (ld)
1579 and passes as arguments the value of
1580 <link linkend='var-BUILD_LD_ARCH'><filename>BUILD_LD_ARCH</filename></link>,
1581 assuming <filename>BUILD_LD_ARCH</filename> is set.
1582 </para>
1583 </glossdef>
1584 </glossentry>
1585
1586 <glossentry id='var-BUILD_LD_ARCH'><glossterm>BUILD_LD_ARCH</glossterm>
1587 <info>
1588 BUILD_LD_ARCH[doc] = "Specifies architecture-specific linker flags for the build."
1589 </info>
1590 <glossdef>
1591 <para role="glossdeffirst">
1592<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1593 Specifies architecture-specific linker flags for the build
1594 host. By default, the value of
1595 <filename>BUILD_LD_ARCH</filename> is empty.
1596 </para>
1597 </glossdef>
1598 </glossentry>
1599
1509 <glossentry id='var-BUILD_LDFLAGS'><glossterm>BUILD_LDFLAGS</glossterm> 1600 <glossentry id='var-BUILD_LDFLAGS'><glossterm>BUILD_LDFLAGS</glossterm>
1510 <info> 1601 <info>
1511 BUILD_LDFLAGS[doc] = "Specifies the flags to pass to the linker when building for the build host." 1602 BUILD_LDFLAGS[doc] = "Specifies the flags to pass to the linker when building for the build host."
@@ -1579,6 +1670,21 @@
1579 </glossdef> 1670 </glossdef>
1580 </glossentry> 1671 </glossentry>
1581 1672
1673 <glossentry id='var-BUILD_STRIP'><glossterm>BUILD_STRIP</glossterm>
1674 <info>
1675 BUILD_STRIP[doc] = "Specifies the command to be used to strip debugging symbols from binaries produced for the build host."
1676 </info>
1677 <glossdef>
1678 <para role="glossdeffirst">
1679<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
1680 Specifies the command to be used to strip debugging symbols
1681 from binaries produced for the build host. By default,
1682 <filename>BUILD_STRIP</filename> points to
1683 <filename>${</filename><link linkend='var-BUILD_PREFIX'><filename>BUILD_PREFIX</filename></link><filename>}strip</filename>.
1684 </para>
1685 </glossdef>
1686 </glossentry>
1687
1582 <glossentry id='var-BUILD_SYS'><glossterm>BUILD_SYS</glossterm> 1688 <glossentry id='var-BUILD_SYS'><glossterm>BUILD_SYS</glossterm>
1583 <info> 1689 <info>
1584 BUILD_SYS[doc] = "The toolchain binary prefix used for native recipes." 1690 BUILD_SYS[doc] = "The toolchain binary prefix used for native recipes."