mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
nettle: avoid neon on unsupported machines
Disable neon if the machine does not support it. --enable-fat also includes the neon assembler code, therefore also disable it. (From OE-Core rev: 768c6bb46e1cc4a1d8c12c6f30408bb821ec4534) Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
1862468784
commit
b295f256b4
|
|
@ -30,6 +30,9 @@ EXTRA_AUTORECONF += "--exclude=aclocal"
|
|||
|
||||
EXTRA_OECONF = "--disable-openssl"
|
||||
|
||||
EXTRA_OECONF:append:armv7a = "${@bb.utils.contains("TUNE_FEATURES","neon",""," --disable-arm-neon --disable-fat",d)}"
|
||||
EXTRA_OECONF:append:armv7ve = "${@bb.utils.contains("TUNE_FEATURES","neon",""," --disable-arm-neon --disable-fat",d)}"
|
||||
|
||||
do_compile_ptest() {
|
||||
oe_runmake buildtest
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user