Re: [yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-24 Thread Burton, Ross
On 23 April 2017 at 09:40, David Bensoussan wrote: > I managed to track down how to create the SDK. Sorry for the long answer > but it might help people googling it. > Honestly no idea why this doesn't work for you: $ MACHINE=qemuarm64 bitbake core-image-base -c

Re: [yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-23 Thread David Bensoussan
I forgot to precise, compiling, doesn't work on the host system, it cannot compile a simple .c file, not finding "stdio.h". On Sun, 23 Apr 2017 at 10:40 David Bensoussan wrote: > I managed to track down how to create the SDK. Sorry for the long answer > but it might

Re: [yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-23 Thread David Bensoussan
I managed to track down how to create the SDK. Sorry for the long answer but it might help people googling it. DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES}" in *meta-poky/conf/distro/poky.conf* DISTRO_FEATURES_LIBC is defined as

Re: [yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-21 Thread Trevor Woerner
On Fri 2017-04-21 @ 11:37:44 AM, David Bensoussan wrote: > I wanted to generate an sdk and met these errors while executing: > $ bitbake core-image-base -c do_populate_sdk Does adding the "do_" work? Is there any difference if you type: $ bitbake core-image-base -c populate_sdk ? --

Re: [yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-21 Thread David Bensoussan
Yes sure. Here it is: DISTRO ?= "poky" PACKAGE_CLASSES ?= "package_deb" EXTRA_IMAGE_FEATURES = "debug-tweaks package-management tools-profile" PATCHRESOLVE = "noop" BB_DISKMON_DIRS = "\ STOPTASKS,${TMPDIR},1G,100K \ STOPTASKS,${DL_DIR},1G,100K \ STOPTASKS,${SSTATE_DIR},1G,100K \

Re: [yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-21 Thread Burton, Ross
On 21 April 2017 at 12:37, David Bensoussan wrote: > DISTRO_FEATURES_LIBC = "libc-locales libc-locale-code" > Unless you really need to, don't fiddle stuff like this. Can you share your local.conf? Ross -- ___ yocto

[yocto] bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)

2017-04-21 Thread David Bensoussan
Hello, I tried to solve the issue by myself, read on the documentation and check the mailing list, but I couldn't find the information I was looking for. The documentation was of a great help as a guideline but I now don't know how to proceed. I wanted to generate an sdk and met these errors