diff options
author | Fahad Arslan <Fahad_Arslan@mentor.com> | 2014-01-20 15:38:20 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 00:52:32 +0000 |
commit | f805cff5fc7652a531543ec96f2ca9d03d7738a2 (patch) | |
tree | 6fc84ecef2b9dd1babf7ca253955d1526757158a /meta/recipes-multimedia | |
parent | 492240ac22f3e3c534d9932404710e6f45e0ac9c (diff) | |
download | poky-f805cff5fc7652a531543ec96f2ca9d03d7738a2.tar.gz |
speex: configure in float or fixed mode based on TARGET_FPU
Decide float or fixed mode usage depending on whether hardware
FPU is present or not.
(From OE-Core rev: e8f707f16a38d85535593a32efff6dcbf4ddb203)
Signed-off-by: Fahad Arslan <Fahad_Arslan@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r-- | meta/recipes-multimedia/speex/speex-fpu.inc | 4 | ||||
-rw-r--r-- | meta/recipes-multimedia/speex/speex_1.2rc1.bb | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/speex/speex-fpu.inc b/meta/recipes-multimedia/speex/speex-fpu.inc new file mode 100644 index 0000000000..2571d32484 --- /dev/null +++ b/meta/recipes-multimedia/speex/speex-fpu.inc | |||
@@ -0,0 +1,4 @@ | |||
1 | def get_speex_fpu_setting(bb, d): | ||
2 | if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: | ||
3 | return "--enable-fixed-point --disable-float-api --disable-vbr" | ||
4 | return "" | ||
diff --git a/meta/recipes-multimedia/speex/speex_1.2rc1.bb b/meta/recipes-multimedia/speex/speex_1.2rc1.bb index 5de0169354..9fd88a39f3 100644 --- a/meta/recipes-multimedia/speex/speex_1.2rc1.bb +++ b/meta/recipes-multimedia/speex/speex_1.2rc1.bb | |||
@@ -19,5 +19,7 @@ PARALLEL_MAKE = "" | |||
19 | inherit autotools pkgconfig lib_package | 19 | inherit autotools pkgconfig lib_package |
20 | 20 | ||
21 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ | 21 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ |
22 | --disable-float-api --disable-vbr \ | ||
23 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" | 22 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" |
23 | |||
24 | require speex-fpu.inc | ||
25 | EXTRA_OECONF += "${@get_speex_fpu_setting(bb, d)}" | ||