The cmake alias is no longer functioning properly.
It puts the alias configure script in
/path/toolchain/buildtools/sysroots/x86_64-pokysdk-linux/ environment-setup.d/
cmake.sh
The actual file goes into /path
/toolchain/buildtools/sysroots/x86_64-pokysdk-linux/usr/share/cmake/
OEToolchainConfig.cmake
This falls outside the:
export SDKTARGETSYSROOT=/path/toolchain/tmp/sysroots/core-toolchain
export OECORE_NATIVE_SYSROOT="/path/toolchain/tmp/sysroots/x86_64"
# Append environment subscripts
if [ -d "$OECORE_TARGET_SYSROOT/environment-setup.d" ]; then
for envfile in $OECORE_TARGET_SYSROOT/environment-setup.d/*.sh; do
. $envfile
done
fi
if [ -d "$OECORE_NATIVE_SYSROOT/environment-setup.d" ]; then
for envfile in $OECORE_NATIVE_SYSROOT/environment-setup.d/*.sh; do
. $envfile
done
fi
I am guessing where the file is installed on the cmake recipe needs to change.
Just not sure what to change it to.
--
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core