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

Bach, Pascal pascal.bach at siemens.com
Fri Jul 17 12:23:40 UTC 2015


Hi

> -----Original Message-----
> From: Stefan Herbrechtsmeier [mailto:stefan at herbrechtsmeier.net]
> Sent: Freitag, 17. Juli 2015 12:56
> To: Bach, Pascal; openembedded-core at 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 at 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" )




More information about the Openembedded-core mailing list