summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-cross.inc
diff options
context:
space:
mode:
authorPeter A. Bigot <pab@pabigot.com>2014-08-14 14:05:51 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-15 18:21:49 +0100
commit6d78f392f524944a1e32e14e4b1a7e48422a3ece (patch)
tree2c0c89f64d39a113b157200755aa7c865df6c6a3 /meta/recipes-devtools/gcc/gcc-cross.inc
parent2783ee732a4e1c30ec143509fdf8cce8657e67b7 (diff)
downloadpoky-6d78f392f524944a1e32e14e4b1a7e48422a3ece.tar.gz
gcc: recipe whitespace changes
Consistent use of whitespace in multi-line assignment, with special focus on OECONF modifications. Quotes on separate lines, four-space indentation, one value per line. (From OE-Core rev: d971db8b2259e4c35b871cccf130fba193849560) Signed-off-by: Peter A. Bigot <pab@pabigot.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross.inc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-cross.inc28
1 files changed, 17 insertions, 11 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc
index cf3e5e891d..64d0652283 100644
--- a/meta/recipes-devtools/gcc/gcc-cross.inc
+++ b/meta/recipes-devtools/gcc/gcc-cross.inc
@@ -13,17 +13,23 @@ PN = "gcc-cross-${TARGET_ARCH}"
13 13
14require gcc-configure-common.inc 14require gcc-configure-common.inc
15 15
16EXTRA_OECONF += " --enable-poison-system-directories" 16EXTRA_OECONF += "--enable-poison-system-directories"
17EXTRA_OECONF_append_sh4 = " --with-multilib-list= --enable-incomplete-targets " 17EXTRA_OECONF_append_sh4 = " \
18 18 --with-multilib-list= \
19EXTRA_OECONF += "--disable-libunwind-exceptions \ 19 --enable-incomplete-targets \
20 --with-mpfr=${STAGING_DIR_NATIVE}${prefix_native} \ 20"
21 --with-system-zlib " 21
22 22EXTRA_OECONF += "\
23EXTRA_OECONF_PATHS = " \ 23 --disable-libunwind-exceptions \
24 --with-gxx-include-dir=${STAGING_DIR_TARGET}${target_includedir}/c++/${BINV} \ 24 --with-mpfr=${STAGING_DIR_NATIVE}${prefix_native} \
25 --with-sysroot=${STAGING_DIR_TARGET} \ 25 --with-system-zlib \
26 --with-build-sysroot=${STAGING_DIR_TARGET}" 26"
27
28EXTRA_OECONF_PATHS = "\
29 --with-gxx-include-dir=${STAGING_DIR_TARGET}${target_includedir}/c++/${BINV} \
30 --with-sysroot=${STAGING_DIR_TARGET} \
31 --with-build-sysroot=${STAGING_DIR_TARGET} \
32"
27 33
28ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_DIR_TARGET}${target_includedir}" 34ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_DIR_TARGET}${target_includedir}"
29 35