summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-configure-common.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-configure-common.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-configure-common.inc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-configure-common.inc46
1 files changed, 24 insertions, 22 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index 75fb379956..9c4e98694b 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -29,24 +29,26 @@ EXTRA_OECONF_INTERMEDIATE ?= ""
29GCCMULTILIB ?= "--disable-multilib" 29GCCMULTILIB ?= "--disable-multilib"
30GCCTHREADS ?= "posix" 30GCCTHREADS ?= "posix"
31 31
32EXTRA_OECONF = "${@['--enable-clocale=generic', ''][d.getVar('USE_NLS', True) != 'no']} \ 32EXTRA_OECONF = "\
33 --with-gnu-ld \ 33 ${@['--enable-clocale=generic', ''][d.getVar('USE_NLS', True) != 'no']} \
34 --enable-shared \ 34 --with-gnu-ld \
35 --enable-languages=${LANGUAGES} \ 35 --enable-shared \
36 --enable-threads=${GCCTHREADS} \ 36 --enable-languages=${LANGUAGES} \
37 ${GCCMULTILIB} \ 37 --enable-threads=${GCCTHREADS} \
38 --enable-c99 \ 38 ${GCCMULTILIB} \
39 --enable-long-long \ 39 --enable-c99 \
40 --enable-symvers=gnu \ 40 --enable-long-long \
41 --enable-libstdcxx-pch \ 41 --enable-symvers=gnu \
42 --program-prefix=${TARGET_PREFIX} \ 42 --enable-libstdcxx-pch \
43 --without-local-prefix \ 43 --program-prefix=${TARGET_PREFIX} \
44 ${OPTSPACE} \ 44 --without-local-prefix \
45 ${EXTRA_OECONF_BASE} \ 45 ${OPTSPACE} \
46 ${EXTRA_OECONF_FPU} \ 46 ${EXTRA_OECONF_BASE} \
47 ${EXTRA_OECONF_PATHS} \ 47 ${EXTRA_OECONF_FPU} \
48 ${@get_gcc_mips_plt_setting(bb, d)} \ 48 ${EXTRA_OECONF_PATHS} \
49 ${@get_gcc_multiarch_setting(bb, d)}" 49 ${@get_gcc_mips_plt_setting(bb, d)} \
50 ${@get_gcc_multiarch_setting(bb, d)} \
51"
50 52
51export ac_cv_path_SED = 'sed' 53export ac_cv_path_SED = 'sed'
52export gcc_cv_collect2_libs = 'none required' 54export gcc_cv_collect2_libs = 'none required'
@@ -55,11 +57,11 @@ export gcc_cv_collect2_libs = 'none required'
55# hence being missed by the insane do_configure check). 57# hence being missed by the insane do_configure check).
56 58
57# Build uclibc compilers without cxa_atexit support 59# Build uclibc compilers without cxa_atexit support
58EXTRA_OECONF_append_linux = " --enable-__cxa_atexit" 60EXTRA_OECONF_append_linux = " --enable-__cxa_atexit"
59EXTRA_OECONF_append_libc-uclibc = " --enable-__cxa_atexit" 61EXTRA_OECONF_append_libc-uclibc = " --enable-__cxa_atexit"
60 62
61EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" 63EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64"
62EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" 64EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64"
63 65
64EXTRA_OECONF_FPU ??= "" 66EXTRA_OECONF_FPU ??= ""
65CPPFLAGS = "" 67CPPFLAGS = ""