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 @@ + BUILD_AS_ARCH + + BUILD_AS_ARCH[doc] = "Specifies the architecture-specific assembler flags for the build host." + + + + + Specifies the architecture-specific assembler flags for + the build host. By default, the value of + BUILD_AS_ARCH is empty. + + + + + BUILD_CC_ARCH + + BUILD_CC_ARCH[doc] = "Specifies the architecture-specific C compiler flags for the build host." + + + + + Specifies the architecture-specific C compiler flags for + the build host. By default, the value of + BUILD_CC_ARCH is empty. + + + + + BUILD_CCLD + + BUILD_CCLD[doc] = "Specifies the linker command to be used for the build host when the C compiler is being used as the linker." + + + + + Specifies the linker command to be used for the build host + when the C compiler is being used as the linker. By default, + BUILD_CCLD points to GCC and passes as + arguments the value of + BUILD_CC_ARCH, + assuming BUILD_CC_ARCH is set. + + + + BUILD_CFLAGS BUILD_CFLAGS[doc] = "Specifies the flags to pass to the C compiler when building for the build host." @@ -1506,6 +1551,52 @@ + BUILD_FC + + BUILD_FC[doc] = "Specifies the Fortran compiler command for the build host." + + + + + Specifies the Fortran compiler command for the build host. + By default, BUILD_FC points to + Gfortran and passes as arguments the value of + BUILD_CC_ARCH, + assuming BUILD_CC_ARCH is set. + + + + + BUILD_LD + + BUILD_LD[doc] = "Specifies the linker command for the build host." + + + + + Specifies the linker command for the build host. By default, + BUILD_LD points to the GNU linker (ld) + and passes as arguments the value of + BUILD_LD_ARCH, + assuming BUILD_LD_ARCH is set. + + + + + BUILD_LD_ARCH + + BUILD_LD_ARCH[doc] = "Specifies architecture-specific linker flags for the build." + + + + + Specifies architecture-specific linker flags for the build + host. By default, the value of + BUILD_LD_ARCH is empty. + + + + BUILD_LDFLAGS BUILD_LDFLAGS[doc] = "Specifies the flags to pass to the linker when building for the build host." @@ -1579,6 +1670,21 @@ + BUILD_STRIP + + BUILD_STRIP[doc] = "Specifies the command to be used to strip debugging symbols from binaries produced for the build host." + + + + + Specifies the command to be used to strip debugging symbols + from binaries produced for the build host. By default, + BUILD_STRIP points to + ${BUILD_PREFIX}strip. + + + + BUILD_SYS BUILD_SYS[doc] = "The toolchain binary prefix used for native recipes."