[OE-core] Circular dependency of do_populate_sysroot

2019-04-07 Thread Stefan Herbrechtsmeier
Hi, I'm working towards an integrated Node.js support without npm and have a problem with a circular dependency of do_populate_sysroot for the native build. I have two recipes a.bb and b.bb which have no DEPENDS but a RDEPENDS_${PN} between each other. This is no problem for a cross build

Re: [OE-core] [PATCH] cmake.bbclass: remove ${prefix} assignment

2015-11-16 Thread Stefan Herbrechtsmeier
Am 14.11.2015 um 02:24 schrieb Kevron Rees: CMAKE_INSTALL_PREFIX has a different semantic meaning than ${prefix}[1]. cmake treats CMAKE_INSTALL_PREFIX the same as the DESTDIR environment variable. CMAKE_INSTALL_PREFIX and DESTDIR are different and used together [1]: [...] install the

Re: [OE-core] [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake

2015-07-17 Thread Stefan Herbrechtsmeier
Am 17.07.2015 um 14:23 schrieb Bach, Pascal: Hi -Original Message- From: Stefan Herbrechtsmeier [mailto:ste...@herbrechtsmeier.net] Sent: Freitag, 17. Juli 2015 12:56 To: Bach, Pascal; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] cmake.bbclass: set archiver

Re: [OE-core] [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake

2015-07-17 Thread Stefan Herbrechtsmeier
Am 17.07.2015 um 09:44 schrieb Pascal Bach: Setting CMAKE_AR, CMAKE_LINKER and CMAKE_RANLIB correctly in toolchain.cmake is necessary to correctly build -native packages using CMake. The reason is that CMake is not able to find the above utilities by itself because

Re: [OE-core] [PATCH] cmake bbclass: fix support for native builds

2015-06-30 Thread Stefan Herbrechtsmeier
Am 30.06.2015 um 15:18 schrieb Koen Kooi: For native builds of recipes (e.g. mariadb-native) cmake *must* look outside of its sysroot to find the compiler, so instruct it to do so. Signed-off-by: Koen Kooi koen.k...@linaro.org --- meta/classes/cmake.bbclass | 5 + 1 file changed, 5

Re: [OE-core] [oe] cmake update broke mariadb

2015-06-30 Thread Stefan Herbrechtsmeier
Am 30.06.2015 um 11:59 schrieb Koen Kooi: Burton, Ross schreef op 30-06-15 om 11:44: On 30 June 2015 at 01:39, akuster808 akuster...@gmail.com wrote: eo-core commit f8661aa cmake: Upgrade 2.8.12.2 - 3.2.2 broke mariadb in meta-oe. DOes the person who updated cmake need to fix this or the

Re: [OE-core] [PATCH v3 2/2] cmake: Upgrade 2.8.12.2 - 3.2.2

2015-06-18 Thread Stefan Herbrechtsmeier
Am 17.06.2015 um 16:47 schrieb Moritz Blume: On 11.06.2015 21:10, Stefan Herbrechtsmeier wrote: Am 10.06.2015 um 09:36 schrieb Moritz Blume: Patches qt4-fail-silent.patch and support-oe-qt4-tools-names.patch were adapted in order to fit to CMake 3.2.2 (refer to the commit message

Re: [OE-core] [PATCH v3 2/2] cmake: Upgrade 2.8.12.2 - 3.2.2

2015-06-11 Thread Stefan Herbrechtsmeier
Am 10.06.2015 um 09:36 schrieb Moritz Blume: Patches qt4-fail-silent.patch and support-oe-qt4-tools-names.patch were adapted in order to fit to CMake 3.2.2 (refer to the commit message in the respective patch for details). Patch cmake-2.8.11.2-FindFreetype.patch was dropped since it was rejected

Re: [OE-core] [PATCH v3 2/2] cmake: Upgrade 2.8.12.2 - 3.2.2

2015-06-11 Thread Stefan Herbrechtsmeier
Am 10.06.2015 um 09:36 schrieb Moritz Blume: Patches qt4-fail-silent.patch and support-oe-qt4-tools-names.patch were adapted in order to fit to CMake 3.2.2 (refer to the commit message in the respective patch for details). Patch cmake-2.8.11.2-FindFreetype.patch was dropped since it was rejected

Re: [OE-core] cmake.bbclass questions

2015-02-11 Thread Stefan Herbrechtsmeier
Am 10.02.2015 um 23:53 schrieb Matt Madison: I just finished some recipes for some CMake-built packages (from the Kurento project). I managed to get everything building, but I had to modify how cmake.bbclass does things, and I'm wondering if there's a better way to solve some of these. Each

Re: [OE-core] cmake.bbclass questions

2015-02-11 Thread Stefan Herbrechtsmeier
Am 11.02.2015 um 13:33 schrieb Matt Madison: On Wed, 2015-02-11 at 11:21 +0100, Stefan Herbrechtsmeier wrote: Am 10.02.2015 um 23:53 schrieb Matt Madison: I just finished some recipes for some CMake-built packages (from the Kurento project). I managed to get everything building, but I had

Re: [OE-core] [PATCH 3/3] cmake: default to out-of-tree builds

2014-01-16 Thread Stefan Herbrechtsmeier
Am 10.01.2014 18:54, schrieb Ross Burton: Set B=${WORKDIR}/build in cmake.bbclass so that recipes using cmake.bbclass do out-of-tree builds by default. You should update the note to reflect the new behaviour. ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] cmake.bbclass: Don't use packages from the native build machine

2013-08-15 Thread Stefan Herbrechtsmeier
[mailto:openembedded-core-boun...@lists.openembedded.org] Im Auftrag von Stefan Herbrechtsmeier Gesendet: Mittwoch, 14. August 2013 10:48 An: openembedded-core@lists.openembedded.org Betreff: [OE-core] [PATCH] cmake.bbclass: Don't use packages from the native build machine Signed-off-by: Stefan Herbrechtsmeier

[OE-core] [PATCH] cmake.bbclass: Don't use packages from the native build machine

2013-08-14 Thread Stefan Herbrechtsmeier
Signed-off-by: Stefan Herbrechtsmeier ste...@herbrechtsmeier.net --- meta/classes/cmake.bbclass |1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index 310242e..8e579a7 100644 --- a/meta/classes/cmake.bbclass +++ b/meta/classes

Re: [OE-core] [PATCH] cmake.bbclass: set ar/ld/nm/objcopy/objdump/ranlib/strip native paths

2013-07-18 Thread Stefan Herbrechtsmeier
Am 18.07.2013 02:47, schrieb Jonathan Liu: On 17 July 2013 22:12, Stefan Herbrechtsmeier ste...@herbrechtsmeier.net wrote: Am 17.07.2013 12:57, schrieb Jonathan Liu: On 17/07/2013 7:49 PM, Jonathan Liu wrote: On 17/07/2013 7:13 PM, Stefan Herbrechtsmeier wrote: Am 17.07.2013 10:40, schrieb

Re: [OE-core] [PATCH v2] cmake.bbclass: allow searching host paths for non-target builds

2013-07-17 Thread Stefan Herbrechtsmeier
Am 17.07.2013 08:26, schrieb Jonathan Liu: This allows /usr/bin/{ld,ar,objcopy,objdump,ranlib,strip} to be found and the CMAKE_{LINKER,AR,OBJCOPY,OBJDUMP,RANLIB,STRIP} cmake variables to be properly set for native cmake recipes. Signed-off-by: Jonathan Liu net...@gmail.com ---

Re: [OE-core] [PATCH] cmake.bbclass: set ar/ld/nm/objcopy/objdump/ranlib/strip native paths

2013-07-17 Thread Stefan Herbrechtsmeier
Am 17.07.2013 10:40, schrieb Jonathan Liu: The CMAKE_{AR,LINKER,NM,OBJCOPY,OBJDUMP,RANLIB,STRIP} cmake variables are currently set to values like CMAKE_LINKER-NOTFOUND for native recipes because the host paths are not searched. This is because the CMAKE_FIND_ROOT_PATH_MODE_PROGRAM cmake variable

Re: [OE-core] [PATCH] cmake.bbclass: set ar/ld/nm/objcopy/objdump/ranlib/strip native paths

2013-07-17 Thread Stefan Herbrechtsmeier
Am 17.07.2013 12:57, schrieb Jonathan Liu: On 17/07/2013 7:49 PM, Jonathan Liu wrote: On 17/07/2013 7:13 PM, Stefan Herbrechtsmeier wrote: Am 17.07.2013 10:40, schrieb Jonathan Liu: The CMAKE_{AR,LINKER,NM,OBJCOPY,OBJDUMP,RANLIB,STRIP} cmake variables are currently set to values like

[OE-core] [PATCH] tcf-agent: Use common two-digit sequence numbers for init script links

2013-05-15 Thread Stefan Herbrechtsmeier
The common init script links use two-digit sequence numbers and systemd interprets everything behind the two-digits as service name. This leads to the following failure during boot: Cannot add dependency job for unit 9tcf-agent.service Signed-off-by: Stefan Herbrechtsmeier ste

Re: [OE-core] [oe] State of bitbake world

2013-05-06 Thread Stefan Herbrechtsmeier
Am 03.05.2013 16:29, schrieb Stefan Herbrechtsmeier: Am 02.05.2013 17:18, schrieb Martin Jansa: On Sat, Apr 27, 2013 at 12:54:00PM +0200, Martin Jansa wrote: Updated status, but only change IIRC is fixed php, tbb, android-audiosystem and partially fixed llvm2.9 (I'm testing patch to fix build

Re: [OE-core] [PATCH] boost: Add real native support

2013-03-26 Thread Stefan Herbrechtsmeier
Am 26.03.2013 06:55, schrieb Khem Raj: On Mar 12, 2013, at 7:49 AM, Stefan Herbrechtsmeier ste...@herbrechtsmeier.net wrote: The current boost recipe only creates the bjam build tool during a native run and thereby is not usable for other native recipes that depend on a boost library. Use

[OE-core] [PATCH V2] boost: Add real native support

2013-03-26 Thread Stefan Herbrechtsmeier
-native with bjam-native in the DEPENDS. This allows recipes to depend on native boost librarties without increase of the build time for other use cases. Native compilation of bzip2 isn't working and therefore disabled. Signed-off-by: Stefan Herbrechtsmeier ste...@herbrechtsmeier.net --- meta

Re: [OE-core] [PATCH] boost: Split out bjam build tool and add real native support

2013-03-12 Thread Stefan Herbrechtsmeier
Am 12.03.2013 11:48, schrieb Koen Kooi: Op 12 mrt. 2013, om 11:19 heeft Stefan Herbrechtsmeier ste...@herbrechtsmeier.net het volgende geschreven: Am 12.03.2013 00:44, schrieb Saul Wold: On 03/07/2013 08:37 AM, Stefan Herbrechtsmeier wrote: The current boost recipe only creates the bjam

[OE-core] [PATCH] boost: Add real native support

2013-03-12 Thread Stefan Herbrechtsmeier
the boost-native from DEPENDS. Keep the installation of the native bjam build tool for backward compatibility. Native compilation of bzip2 isn't working and therefore disabled. Signed-off-by: Stefan Herbrechtsmeier ste...@herbrechtsmeier.net --- meta/recipes-support/boost/boost.inc | 37

Re: [OE-core] [PATCH] boost: Split out bjam build tool and add real native support

2013-03-12 Thread Stefan Herbrechtsmeier
Am 12.03.2013 12:58, schrieb Stefan Herbrechtsmeier: Am 12.03.2013 11:48, schrieb Koen Kooi: Op 12 mrt. 2013, om 11:19 heeft Stefan Herbrechtsmeier ste...@herbrechtsmeier.net het volgende geschreven: Am 12.03.2013 00:44, schrieb Saul Wold: On 03/07/2013 08:37 AM, Stefan Herbrechtsmeier

[OE-core] [PATCH] boost: Split out bjam build tool and add real native support

2013-03-07 Thread Stefan Herbrechtsmeier
on native boost libraries without increase of the build time for other use cases. Native compilation of bzip2 isn't working and therefore disabled. Signed-off-by: Stefan Herbrechtsmeier ste...@herbrechtsmeier.net --- meta/recipes-support/boost/bjam_1.53.0.bb | 21 +++ meta/recipes-support

Re: [OE-core] [PATCH] distutils-common : Add -staticdev to PACKAGES.

2012-11-20 Thread Stefan Herbrechtsmeier
Am 20.11.2012 23:58, schrieb Philip Balister: Some python recipes may build static libraries that need packaging in {PN}-static-dev. This change fixes a QA error in python-numpy. Signed-off-by: Philip Balister phi...@balister.org --- meta/classes/distutils-common-base.bbclass | 2 +- 1 file

[OE-core] [PATCH] distutils-common-base: Create staticdev pacakge for static libraries

2012-11-16 Thread Stefan Herbrechtsmeier
From: Stefan Herbrechtsmeier sherb...@cit-ec.uni-bielefeld.de Signed-off-by: Stefan Herbrechtsmeier ste...@herbrechtsmeier.net --- meta/classes/distutils-common-base.bbclass |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/classes/distutils-common-base.bbclass b

Re: [OE-core] [PATCH 2/5] bluez4: update to ver. 4.101

2012-07-09 Thread Stefan Herbrechtsmeier
Am 04.07.2012 13:34, schrieb Cristian Iorga: Signed-off-by: Cristian Iorga cristian.io...@intel.com --- .../{bluez4-4.99 = bluez4-4.101}/bluetooth.conf |0 .../{bluez4-4.99 = bluez4-4.101}/sbc_mmx.patch|0 .../bluez/{bluez4_4.99.bb = bluez4_4.101.bb} |9 - 3

Re: [OE-core] [PATCH] linux-firmware: keep version string in libertas firmware

2012-04-10 Thread Stefan Herbrechtsmeier
Am 06.04.2012 15:31, schrieb Koen Kooi: Op 5 apr. 2012 om 20:17 heeft Saul Wolds...@linux.intel.com het volgende geschreven: On 04/05/2012 03:36 AM, Stefan Herbrechtsmeier wrote: Recent Linux kernel tries to load the libertas firmware with the version string in its name first. This results

Re: [OE-core] [PATCH] u-boot: add machine name to spl image name

2012-04-10 Thread Stefan Herbrechtsmeier
Am 10.04.2012 15:56, schrieb Koen Kooi: Op 10 apr. 2012, om 15:41 heeft Richard Purdie het volgende geschreven: On Fri, 2012-04-06 at 06:29 -0700, Koen Kooi wrote: Op 5 apr. 2012 om 20:18 heeft Saul Wolds...@linux.intel.com het volgende geschreven: On 04/05/2012 04:48 AM, Stefan

[OE-core] [PATCH] linux-firmware: keep version string in libertas firmware

2012-04-05 Thread Stefan Herbrechtsmeier
Recent Linux kernel tries to load the libertas firmware with the version string in its name first. This results in a delayed firmware load on system boot. Keep the default libertas firmware name and add a link for older driver versions. Signed-off-by: Stefan Herbrechtsmeier ste

[OE-core] [PATCH] u-boot: add machine name to spl image name

2012-04-05 Thread Stefan Herbrechtsmeier
Signed-off-by: Stefan Herbrechtsmeier ste...@herbrechtsmeier.net --- meta/recipes-bsp/u-boot/u-boot.inc|2 +- meta/recipes-bsp/u-boot/u-boot_2011.03.bb |2 +- meta/recipes-bsp/u-boot/u-boot_2011.06.bb |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta

<    1   2   3