[yocto] Python 3 internal package dependencies

2017-06-07 Thread Craig McQueen
I found that the Python 3 internal package dependencies are incompletely specified. For example, I wanted to install python3-asyncio for my Python program to use. But when I tried to run it, it was missing some other Python 3 packages that asyncio depended on. I ended up making a Python 3 bbappe

[yocto] dllmap config for a Mono app

2017-06-07 Thread Craig McQueen
I have a Mono app that uses DllImport to load some functions from libraries. The app can't find the libraries unless I create a Mono config file containing dllmap lines to map the library's plain "DLL" name (e.g. "foo") to the real name of the .so file (e.g. "libfoo.so.4"). * What would be a go

Re: [yocto] Building boost-python

2017-06-07 Thread Tim Orling
You should do what meta-ros did: https://github.com/bmwcarit/meta-ros/blob/master/recipes-support/boost/boost_%25.bbappend > On Jun 7, 2017, at 3:46 AM, Jakob Hasse > wrote: > > > >> On 07.06.2017 11:59, VanCutsem, Geoffroy wrote: >> >>> -Original Message- >>> From: yocto-boun...@yo

Re: [yocto] [meta-raspberrypi][PATCH] pi-blaster: update to include proper rpi3 support

2017-06-07 Thread Khem Raj
On Wed, Jun 7, 2017 at 9:09 PM, Petter Mabäcker wrote: > 2017-06-08 00:54 skrev Khem Raj: > > > On Wed, Jun 7, 2017 at 2:17 PM Petter Mabäcker wrote: >> >> Update to latest available revision, in order to include proper rpi3 >> support as well as latest fixes. >> >> Signed-off-by: Petter Mabäcker

Re: [yocto] [meta-raspberrypi][PATCH] pi-blaster: update to include proper rpi3 support

2017-06-07 Thread Petter Mabäcker
2017-06-08 00:54 skrev Khem Raj: > On Wed, Jun 7, 2017 at 2:17 PM Petter Mabäcker wrote: > >> Update to latest available revision, in order to include proper rpi3 >> support as well as latest fixes. >> >> Signed-off-by: Petter Mabäcker >> --- >> .../files/remove-initscript-lsb-dependency.

Re: [yocto] [meta-raspberrypi][PATCH] pi-blaster: update to include proper rpi3 support

2017-06-07 Thread Khem Raj
On Wed, Jun 7, 2017 at 2:17 PM Petter Mabäcker wrote: > Update to latest available revision, in order to include proper rpi3 > support as well as latest fixes. > > Signed-off-by: Petter Mabäcker > --- > .../files/remove-initscript-lsb-dependency.patch | 37 > -- > recipes-

[yocto] [meta-raspberrypi][PATCH] pi-blaster: update to include proper rpi3 support

2017-06-07 Thread Petter Mabäcker
Update to latest available revision, in order to include proper rpi3 support as well as latest fixes. Signed-off-by: Petter Mabäcker --- .../files/remove-initscript-lsb-dependency.patch | 37 -- recipes-devtools/pi-blaster/pi-blaster.inc | 2 +- recipes-devtools/pi

Re: [yocto] Getting linker -l into a bbappend

2017-06-07 Thread Colin Helliwell
> On 07 June 2017 at 18:12 Khem Raj wrote: > > On Wed, Jun 7, 2017 at 9:37 AM, wrote: > > > I have an autotools (C++) app which builds fine with my default recipe. But > > for a particular platform an additional (C) library is needed, so I have a > > bbappend. > > I can add in the additional c

Re: [yocto] Getting linker -l into a bbappend

2017-06-07 Thread Khem Raj
On Wed, Jun 7, 2017 at 10:14 AM, Colin Helliwell wrote: > >> On 07 June 2017 at 18:12 Khem Raj wrote: >> >> On Wed, Jun 7, 2017 at 9:37 AM, wrote: >> >> > I have an autotools (C++) app which builds fine with my default recipe. But >> > for a particular platform an additional (C) library is neede

Re: [yocto] Getting linker -l into a bbappend

2017-06-07 Thread Khem Raj
On Wed, Jun 7, 2017 at 9:37 AM, wrote: > I have an autotools (C++) app which builds fine with my default recipe. But > for a particular platform an additional (C) library is needed, so I have a > bbappend. > I can add in the additional compiler flag here, but I'm struggling to > specify the addit

[yocto] Getting linker -l into a bbappend

2017-06-07 Thread colin.helliwell
I have an autotools (C++) app which builds fine with my default recipe. But for a particular platform an additional (C) library is needed, so I have a bbappend. I can add in the additional compiler flag here, but I'm struggling to specify the additional library linkage - I think it's because the or

Re: [yocto] [PATCH] qt4-native: depend on icu-native to fix build on systems with icu >=59

2017-06-07 Thread Cody P Schafer
Yep, for `master` that is certainly true. For `morty` & `pyro` though, meta-qt4 could keep working by using icu-native. The source of this issue being qt4's general incompatibility with C++ 11 (we build with c++98 because of build errors with the newer std) makes me wonder if it will even be poss

Re: [yocto] [PATCH] qt4-native: depend on icu-native to fix build on systems with icu >=59

2017-06-07 Thread Alexander Kanavin
On 06/07/2017 07:19 AM, Cody P Schafer wrote: Previously, qt4-native would use the system icu to build. Trying to build against a system ICU 59, however, fails with this root error: | In file included from /usr/include/unicode/uversion.h:30:0, | from tools/qlocale_icu.cpp:46: |

Re: [yocto] Building boost-python

2017-06-07 Thread Jakob Hasse
On 07.06.2017 11:59, VanCutsem, Geoffroy wrote: -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto- boun...@yoctoproject.org] On Behalf Of Jakob Hasse Sent: Wednesday, June 7, 2017 11:48 AM To: Yocto List Subject: [yocto] Building boost-python Hello, One of my la

Re: [yocto] Building boost-python

2017-06-07 Thread VanCutsem, Geoffroy
> -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto- > boun...@yoctoproject.org] On Behalf Of Jakob Hasse > Sent: Wednesday, June 7, 2017 11:48 AM > To: Yocto List > Subject: [yocto] Building boost-python > > Hello, > > One of my layers needs boost-python. > When

[yocto] Building boost-python

2017-06-07 Thread Jakob Hasse
Hello, One of my layers needs boost-python. When I try to build boost-python with bitbake, it complains: ERROR: Nothing PROVIDES 'boost-python' How can I fix this? Boost itself builds and I also included PACKAGECONFIG_pn_boost = "python" without any effect. My bblayers.conf is here: # LAYER_C