mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-09 14:07:28 +00:00
pcp: Add readline-native and ncurses-native to pcp-native DEPENDS
pcp-native compiles the pcp sources src/pmns/lex.l which does
'#include <readline/readline.h>'. The native recipe only depended on
python3/setuptools/flex/bison, so with the header search correctly
limited to the sysroot
0001-configure-Limit-the-header-search-to-sysroot.patch
the build fails on hosts without readline development headers installed:
lex.l:25:10: fatal error: readline/readline.h: No such file or directory
Depend on readline-native (and ncurses-native, which readline links
against) so the headers and libraries come from the native sysroot
rather than the build host, mirroring the target recipe DEPENDS. This
makes the native build reproducible and host independent.
Verified by building pcp-native from scratch
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
require pcp.inc
|
||||
inherit python3native native
|
||||
#autotools-brokensep
|
||||
DEPENDS = "python3-native python3-setuptools-native flex-native bison-native"
|
||||
DEPENDS = "python3-native python3-setuptools-native flex-native bison-native readline-native ncurses-native"
|
||||
|
||||
export PCP_DIR = "${D}"
|
||||
export PCP_TMP_DIR = "${D}/tmp"
|
||||
|
||||
Reference in New Issue
Block a user