diff options
author | Peter A. Bigot <pab@pabigot.com> | 2014-08-14 14:05:51 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-15 18:21:49 +0100 |
commit | 6d78f392f524944a1e32e14e4b1a7e48422a3ece (patch) | |
tree | 2c0c89f64d39a113b157200755aa7c865df6c6a3 /meta/recipes-devtools/gcc/gcc-cross-initial.inc | |
parent | 2783ee732a4e1c30ec143509fdf8cce8657e67b7 (diff) | |
download | poky-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-initial.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-initial.inc | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc b/meta/recipes-devtools/gcc/gcc-cross-initial.inc index 23a6d4beb4..64196ee106 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc | |||
@@ -11,22 +11,24 @@ CROSS_TARGET_SYS_DIR_append = ".${PN}" | |||
11 | 11 | ||
12 | # This is intended to be a -very- basic config | 12 | # This is intended to be a -very- basic config |
13 | # sysroot is needed in case we use libc-initial | 13 | # sysroot is needed in case we use libc-initial |
14 | EXTRA_OECONF = "--with-newlib \ | 14 | EXTRA_OECONF = "\ |
15 | --without-headers \ | 15 | --with-newlib \ |
16 | --disable-shared \ | 16 | --without-headers \ |
17 | --disable-threads \ | 17 | --disable-shared \ |
18 | --disable-multilib \ | 18 | --disable-threads \ |
19 | --disable-__cxa_atexit \ | 19 | --disable-multilib \ |
20 | --enable-languages=c \ | 20 | --disable-__cxa_atexit \ |
21 | ${OPTSPACE} \ | 21 | --enable-languages=c \ |
22 | --program-prefix=${TARGET_PREFIX} \ | 22 | ${OPTSPACE} \ |
23 | --with-sysroot=${STAGING_DIR_TARGET} \ | 23 | --program-prefix=${TARGET_PREFIX} \ |
24 | --with-build-sysroot=${GCCCROSS_BUILDSYSROOT} \ | 24 | --with-sysroot=${STAGING_DIR_TARGET} \ |
25 | ${EXTRA_OECONF_INITIAL} \ | 25 | --with-build-sysroot=${GCCCROSS_BUILDSYSROOT} \ |
26 | ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--with-ld=${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX}ld.bfd', '', d)} \ | 26 | ${EXTRA_OECONF_INITIAL} \ |
27 | ${EXTRA_OECONF_FPU}" | 27 | ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--with-ld=${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX}ld.bfd', '', d)} \ |
28 | ${EXTRA_OECONF_FPU} \ | ||
29 | " | ||
28 | 30 | ||
29 | EXTRA_OECONF += " --with-native-system-header-dir=${SYSTEMHEADERS} " | 31 | EXTRA_OECONF += "--with-native-system-header-dir=${SYSTEMHEADERS}" |
30 | 32 | ||
31 | GCCCROSS_BUILDSYSROOT = "${B}/tmpsysroot" | 33 | GCCCROSS_BUILDSYSROOT = "${B}/tmpsysroot" |
32 | 34 | ||