From 590b6cfb0b22e57a9b2342af9f74c55bc19213f8 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 19 Jun 2014 11:51:57 +0300 Subject: ref-manual: Added TUNE_ASARGS and TARGET_AS_ARCH variables. New variables added to the glossary. (From yocto-docs rev: 903ed6d26d7d32e4c1237fa9fd44b7471f1a41f2) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'documentation/ref-manual/ref-variables.xml') diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index a811a63cbd..a555ace396 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -8208,6 +8208,22 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" + TARGET_AS_ARCH + + + Specifies architecture-specific assembler flags for the + target system. + TARGET_AS_ARCH is initialized from + TUNE_ASARGS + by default in the BitBake configuration file + (meta/conf/bitbake.conf): + + TARGET_AS_ARCH = "${TUNE_ASARGS}" + + + + + TARGET_CC_ARCH @@ -8855,6 +8871,30 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" + TUNE_ASARGS + + + Specifies architecture-specific assembler flags for + the target system. + The set of flags is based on the selected tune features. + TUNE_ASARGS is set using + the tune include files, which are typically under + meta/conf/machine/include/ and are + influenced through TUNE_FEATURES. + For example, the + meta/conf/machine/include/x86/arch-x86.inc + file defines the flags for the x86 architecture as follows: + + TUNE_ASARGS += "${@bb.utils.contains("TUNE_FEATURES", "mx32", "-x32", "", d)}" + + + Board Support Packages (BSPs) can supply their own + set of flags. + + + + + TUNE_CCARGS -- cgit v1.2.3-54-g00ecf