cmake resets variables

Alexander Neundorf neundorf at kde.org
Wed Nov 7 00:25:42 CET 2007


On Tuesday 06 November 2007, Thiago Macieira wrote:
> Em Tuesday 06 November 2007 14:23:03 Lubos Lunak escreveu:
> >  Hello,
> >
> >  since kBacktrace() is not that useful with hidden symbols, I explicitly
> > run cmake with -D__KDE_HAVE_GCC_VISIBILITY=0, which turns it off.
> > However, any single change to any CMakeLists.txt re-runs automatically
> > cmake, which also runs the cmake test for hidden symbols and enables them
> > (interestingly, after yet another change it doesn't run it again). I
> > always get undefined symbols as a result of this and I'm getting kind of
> > tired of running cmake manually all the time.
> >
> >  Does somebody know how to fix this?
>
> Make the variable cached.

and put a flag variable in the cache which signals "test already done".
Like:

IF(NOT DEFINED GCC_VISIBILITY_TEST_DONE)
   ... do the test
   set(GCC_VISIBILITY_TEST_DONE TRUE CACHE BOOL "Test done")
ENDIF(NOT DEFINED GCC_VISIBILITY_TEST_DONE)


Alex



More information about the Kde-buildsystem mailing list