* [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake
@ 2015-07-17 7:44 Pascal Bach
2015-07-17 10:56 ` Stefan Herbrechtsmeier
0 siblings, 1 reply; 4+ messages in thread
From: Pascal Bach @ 2015-07-17 7:44 UTC (permalink / raw)
To: openembedded-core
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 CMAKE_FIND_ROOT_PATH_MODE_PROGRAM is set to ONLY
so we need to tell it explicitly where to look.
Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
---
meta/classes/cmake.bbclass | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
index 995ddf1..cae0ad2 100644
--- a/meta/classes/cmake.bbclass
+++ b/meta/classes/cmake.bbclass
@@ -13,6 +13,9 @@ inherit autotools
# C/C++ Compiler (without cpu arch/tune arguments)
OECMAKE_C_COMPILER ?= "`echo ${CC} | sed 's/^\([^ ]*\).*/\1/'`"
OECMAKE_CXX_COMPILER ?= "`echo ${CXX} | sed 's/^\([^ ]*\).*/\1/'`"
+OECMAKE_AR ?= "`echo ${AR} | sed 's/^\([^ ]*\).*/\1/'`"
+OECMAKE_LINKER ?= "`echo ${LD} | sed 's/^\([^ ]*\).*/\1/'`"
+OECMAKE_RANLIB ?= "`echo ${RANLIB} | sed 's/^\([^ ]*\).*/\1/'`"
# Compiler flags
OECMAKE_C_FLAGS ?= "${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS} ${CFLAGS}"
@@ -35,6 +38,11 @@ set( CMAKE_SYSTEM_PROCESSOR ${TARGET_ARCH} )
set( CMAKE_C_COMPILER ${OECMAKE_C_COMPILER} )
set( CMAKE_CXX_COMPILER ${OECMAKE_CXX_COMPILER} )
set( CMAKE_ASM_COMPILER ${OECMAKE_C_COMPILER} )
+# Force the use of cache here otherwise the values will be overridden (http://www.cmake.org/Bug/view.php?id=13038)
+set( CMAKE_AR ar CACHE FILEPATH "Archiver" FORCE )
+set( CMAKE_LINKER ld CACHE FILEPATH "Linker" FORCE )
+set( CMAKE_RANLIB ranlib CACHE FILEPATH "Ranlib" FORCE )
+
set( CMAKE_C_FLAGS "${OECMAKE_C_FLAGS}" CACHE STRING "CFLAGS" )
set( CMAKE_CXX_FLAGS "${OECMAKE_CXX_FLAGS}" CACHE STRING "CXXFLAGS" )
set( CMAKE_ASM_FLAGS "${OECMAKE_C_FLAGS}" CACHE STRING "ASM FLAGS" )
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake
2015-07-17 7:44 [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake Pascal Bach
@ 2015-07-17 10:56 ` Stefan Herbrechtsmeier
2015-07-17 12:23 ` Bach, Pascal
0 siblings, 1 reply; 4+ messages in thread
From: Stefan Herbrechtsmeier @ 2015-07-17 10:56 UTC (permalink / raw)
To: Pascal Bach, openembedded-core
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 CMAKE_FIND_ROOT_PATH_MODE_PROGRAM is set to ONLY
> so we need to tell it explicitly where to look.
Which version do you use? The master sets
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM to BOTH for native packages.
If this don't work you could set the CMAKE_C_COMPILER_EXTERNAL_TOOLCHAIN
path (without /bin).
> Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
> ---
> meta/classes/cmake.bbclass | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
> index 995ddf1..cae0ad2 100644
> --- a/meta/classes/cmake.bbclass
> +++ b/meta/classes/cmake.bbclass
> @@ -13,6 +13,9 @@ inherit autotools
> # C/C++ Compiler (without cpu arch/tune arguments)
> OECMAKE_C_COMPILER ?= "`echo ${CC} | sed 's/^\([^ ]*\).*/\1/'`"
> OECMAKE_CXX_COMPILER ?= "`echo ${CXX} | sed 's/^\([^ ]*\).*/\1/'`"
> +OECMAKE_AR ?= "`echo ${AR} | sed 's/^\([^ ]*\).*/\1/'`"
This is already set in master.
> +OECMAKE_LINKER ?= "`echo ${LD} | sed 's/^\([^ ]*\).*/\1/'`"
> +OECMAKE_RANLIB ?= "`echo ${RANLIB} | sed 's/^\([^ ]*\).*/\1/'`"
You don't need the sed for ranlib.
> # Compiler flags
> OECMAKE_C_FLAGS ?= "${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS} ${CFLAGS}"
> @@ -35,6 +38,11 @@ set( CMAKE_SYSTEM_PROCESSOR ${TARGET_ARCH} )
> set( CMAKE_C_COMPILER ${OECMAKE_C_COMPILER} )
> set( CMAKE_CXX_COMPILER ${OECMAKE_CXX_COMPILER} )
> set( CMAKE_ASM_COMPILER ${OECMAKE_C_COMPILER} )
> +# Force the use of cache here otherwise the values will be overridden (http://www.cmake.org/Bug/view.php?id=13038)
> +set( CMAKE_AR ar CACHE FILEPATH "Archiver" FORCE )
> +set( CMAKE_LINKER ld CACHE FILEPATH "Linker" FORCE )
> +set( CMAKE_RANLIB ranlib CACHE FILEPATH "Ranlib" FORCE )
> +
Why you generate OECMAKE_* and don't use them?
Furthermore the CMAKE_* should contain the full path and are generated
in the CMakeFindBinUtils.cmake.
> set( CMAKE_C_FLAGS "${OECMAKE_C_FLAGS}" CACHE STRING "CFLAGS" )
> set( CMAKE_CXX_FLAGS "${OECMAKE_CXX_FLAGS}" CACHE STRING "CXXFLAGS" )
> set( CMAKE_ASM_FLAGS "${OECMAKE_C_FLAGS}" CACHE STRING "ASM FLAGS" )
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake
2015-07-17 10:56 ` Stefan Herbrechtsmeier
@ 2015-07-17 12:23 ` Bach, Pascal
2015-07-17 13:23 ` Stefan Herbrechtsmeier
0 siblings, 1 reply; 4+ messages in thread
From: Bach, Pascal @ 2015-07-17 12:23 UTC (permalink / raw)
To: Stefan Herbrechtsmeier, openembedded-core@lists.openembedded.org
Hi
> -----Original Message-----
> From: Stefan Herbrechtsmeier [mailto:stefan@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, linker and ranlib
> in toolchain.cmake
>
> 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 CMAKE_FIND_ROOT_PATH_MODE_PROGRAM is set to
> ONLY so we
> > need to tell it explicitly where to look.
> Which version do you use? The master sets
> CMAKE_FIND_ROOT_PATH_MODE_PROGRAM to BOTH for native packages.
>
I tested it with 1.7.2. I didn't notice that change in master.
So I retested with master and it is working there without modifications.
> If this don't work you could set the
> CMAKE_C_COMPILER_EXTERNAL_TOOLCHAIN
> path (without /bin).
>
> > Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
> > ---
> > meta/classes/cmake.bbclass | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
> > diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
> > index 995ddf1..cae0ad2 100644
> > --- a/meta/classes/cmake.bbclass
> > +++ b/meta/classes/cmake.bbclass
> > @@ -13,6 +13,9 @@ inherit autotools
> > # C/C++ Compiler (without cpu arch/tune arguments)
> > OECMAKE_C_COMPILER ?= "`echo ${CC} | sed 's/^\([^ ]*\).*/\1/'`"
> > OECMAKE_CXX_COMPILER ?= "`echo ${CXX} | sed 's/^\([^ ]*\).*/\1/'`"
> > +OECMAKE_AR ?= "`echo ${AR} | sed 's/^\([^ ]*\).*/\1/'`"
> This is already set in master.
>
Just saw this.
> > +OECMAKE_LINKER ?= "`echo ${LD} | sed 's/^\([^ ]*\).*/\1/'`"
> > +OECMAKE_RANLIB ?= "`echo ${RANLIB} | sed 's/^\([^ ]*\).*/\1/'`"
> You don't need the sed for ranlib.
>
I wasn't sure it is needed I just keept it to be on the safe side.
The question is if the two above lines are needed at all. As I wrote above it is now working without them.
For consistency reasons one could add them but currently I wouldn't do it.
So I think we can drop this patch.
Thanks for the feedback.
> > # Compiler flags
> > OECMAKE_C_FLAGS ?= "${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS}
> ${CFLAGS}"
> > @@ -35,6 +38,11 @@ set( CMAKE_SYSTEM_PROCESSOR ${TARGET_ARCH}
> )
> > set( CMAKE_C_COMPILER ${OECMAKE_C_COMPILER} )
> > set( CMAKE_CXX_COMPILER ${OECMAKE_CXX_COMPILER} )
> > set( CMAKE_ASM_COMPILER ${OECMAKE_C_COMPILER} )
> > +# Force the use of cache here otherwise the values will be overridden
> > +(http://www.cmake.org/Bug/view.php?id=13038)
> > +set( CMAKE_AR ar CACHE FILEPATH "Archiver" FORCE ) set(
> CMAKE_LINKER
> > +ld CACHE FILEPATH "Linker" FORCE ) set( CMAKE_RANLIB ranlib CACHE
> > +FILEPATH "Ranlib" FORCE )
> > +
> Why you generate OECMAKE_* and don't use them?
>
> Furthermore the CMAKE_* should contain the full path and are generated in
> the CMakeFindBinUtils.cmake.
>
> > set( CMAKE_C_FLAGS "${OECMAKE_C_FLAGS}" CACHE STRING "CFLAGS"
> )
> > set( CMAKE_CXX_FLAGS "${OECMAKE_CXX_FLAGS}" CACHE STRING
> "CXXFLAGS" )
> > set( CMAKE_ASM_FLAGS "${OECMAKE_C_FLAGS}" CACHE STRING "ASM
> FLAGS" )
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake
2015-07-17 12:23 ` Bach, Pascal
@ 2015-07-17 13:23 ` Stefan Herbrechtsmeier
0 siblings, 0 replies; 4+ messages in thread
From: Stefan Herbrechtsmeier @ 2015-07-17 13:23 UTC (permalink / raw)
To: Bach, Pascal, openembedded-core@lists.openembedded.org
Am 17.07.2015 um 14:23 schrieb Bach, Pascal:
> Hi
>
>> -----Original Message-----
>> From: Stefan Herbrechtsmeier [mailto:stefan@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, linker and ranlib
>> in toolchain.cmake
>>
>> 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 CMAKE_FIND_ROOT_PATH_MODE_PROGRAM is set to
>> ONLY so we
>>> need to tell it explicitly where to look.
>> Which version do you use? The master sets
>> CMAKE_FIND_ROOT_PATH_MODE_PROGRAM to BOTH for native packages.
>>
> I tested it with 1.7.2. I didn't notice that change in master.
> So I retested with master and it is working there without modifications.
Good
>> If this don't work you could set the
>> CMAKE_C_COMPILER_EXTERNAL_TOOLCHAIN
>> path (without /bin).
>>
>>> Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
>>> ---
>>> meta/classes/cmake.bbclass | 8 ++++++++
>>> 1 file changed, 8 insertions(+)
>>>
>>> diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
>>> index 995ddf1..cae0ad2 100644
>>> --- a/meta/classes/cmake.bbclass
>>> +++ b/meta/classes/cmake.bbclass
>>> @@ -13,6 +13,9 @@ inherit autotools
>>> # C/C++ Compiler (without cpu arch/tune arguments)
>>> OECMAKE_C_COMPILER ?= "`echo ${CC} | sed 's/^\([^ ]*\).*/\1/'`"
>>> OECMAKE_CXX_COMPILER ?= "`echo ${CXX} | sed 's/^\([^ ]*\).*/\1/'`"
>>> +OECMAKE_AR ?= "`echo ${AR} | sed 's/^\([^ ]*\).*/\1/'`"
>> This is already set in master.
>>
> Just saw this.
>
>>> +OECMAKE_LINKER ?= "`echo ${LD} | sed 's/^\([^ ]*\).*/\1/'`"
>>> +OECMAKE_RANLIB ?= "`echo ${RANLIB} | sed 's/^\([^ ]*\).*/\1/'`"
>> You don't need the sed for ranlib.
>>
> I wasn't sure it is needed I just keept it to be on the safe side.
>
> The question is if the two above lines are needed at all. As I wrote above it is now working without them.
> For consistency reasons one could add them but currently I wouldn't do it.
They aren't needed because they aren't used anywhere.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-07-17 13:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-17 7:44 [PATCH] cmake.bbclass: set archiver, linker and ranlib in toolchain.cmake Pascal Bach
2015-07-17 10:56 ` Stefan Herbrechtsmeier
2015-07-17 12:23 ` Bach, Pascal
2015-07-17 13:23 ` Stefan Herbrechtsmeier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox