All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] a bugfix for cmake.bblcass
@ 2012-03-12 16:28 nitin.a.kamble
  2012-03-12 16:28 ` [PATCH 1/1] cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH nitin.a.kamble
  2012-03-13 16:31 ` [PATCH 0/1] a bugfix for cmake.bblcass Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: nitin.a.kamble @ 2012-03-12 16:28 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

The following changes since commit c27b7aab3c37f182bf9acc5d459185f32fb195d0:

  codeparser: Call intern over the set contents for better cache performance (2012-03-12 15:52:33 +0000)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib nitin/work
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/work

Nitin A Kamble (1):
  cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH

 meta/classes/cmake.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-- 
1.7.6.4




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH
  2012-03-12 16:28 [PATCH 0/1] a bugfix for cmake.bblcass nitin.a.kamble
@ 2012-03-12 16:28 ` nitin.a.kamble
  2012-03-12 17:11   ` Otavio Salvador
  2012-03-13 16:31 ` [PATCH 0/1] a bugfix for cmake.bblcass Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: nitin.a.kamble @ 2012-03-12 16:28 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Some libraries like libcrypto.so are installed at base_libdir
instead of libdir. So add the base_libdir to CMAKE_LIBRARY_PATH
so that these libraries can be found correctly.

This resolves an issues with libzypp, which was not finding the
libcrypo library correctly in an x32 build.

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 meta/classes/cmake.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
index 8aec759..dcd974a 100644
--- a/meta/classes/cmake.bbclass
+++ b/meta/classes/cmake.bbclass
@@ -59,7 +59,7 @@ set( CMAKE_INSTALL_RPATH ${OECMAKE_RPATH} )
 set( CMAKE_MODULE_PATH ${STAGING_DATADIR}/cmake/Modules/ )
 
 # add for non /usr/lib libdir, e.g. /usr/lib64
-set( CMAKE_LIBRARY_PATH ${libdir} )
+set( CMAKE_LIBRARY_PATH ${libdir} ${base_libdir})
 
 EOF
 }
-- 
1.7.6.4




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH
  2012-03-12 16:28 ` [PATCH 1/1] cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH nitin.a.kamble
@ 2012-03-12 17:11   ` Otavio Salvador
  0 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2012-03-12 17:11 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

On Mon, Mar 12, 2012 at 13:28,  <nitin.a.kamble@intel.com> wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>
> Some libraries like libcrypto.so are installed at base_libdir
> instead of libdir. So add the base_libdir to CMAKE_LIBRARY_PATH
> so that these libraries can be found correctly.
>
> This resolves an issues with libzypp, which was not finding the
> libcrypo library correctly in an x32 build.
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> ---
>  meta/classes/cmake.bbclass |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
> index 8aec759..dcd974a 100644
> --- a/meta/classes/cmake.bbclass
> +++ b/meta/classes/cmake.bbclass
> @@ -59,7 +59,7 @@ set( CMAKE_INSTALL_RPATH ${OECMAKE_RPATH} )
>  set( CMAKE_MODULE_PATH ${STAGING_DATADIR}/cmake/Modules/ )
>
>  # add for non /usr/lib libdir, e.g. /usr/lib64
> -set( CMAKE_LIBRARY_PATH ${libdir} )
> +set( CMAKE_LIBRARY_PATH ${libdir} ${base_libdir})
>
>  EOF
>  }
> --
> 1.7.6.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/1] a bugfix for cmake.bblcass
  2012-03-12 16:28 [PATCH 0/1] a bugfix for cmake.bblcass nitin.a.kamble
  2012-03-12 16:28 ` [PATCH 1/1] cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH nitin.a.kamble
@ 2012-03-13 16:31 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-03-13 16:31 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 03/12/2012 09:28 AM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> The following changes since commit c27b7aab3c37f182bf9acc5d459185f32fb195d0:
>
>    codeparser: Call intern over the set contents for better cache performance (2012-03-12 15:52:33 +0000)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib nitin/work
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/work
>
> Nitin A Kamble (1):
>    cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH
>
>   meta/classes/cmake.bbclass |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>

Merged into OE-Core

Thanks
	Sau!



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-03-13 16:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-12 16:28 [PATCH 0/1] a bugfix for cmake.bblcass nitin.a.kamble
2012-03-12 16:28 ` [PATCH 1/1] cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH nitin.a.kamble
2012-03-12 17:11   ` Otavio Salvador
2012-03-13 16:31 ` [PATCH 0/1] a bugfix for cmake.bblcass Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.