diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-01-06 18:09:04 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-01-06 18:23:04 +0100 |
commit | 62532ad485698b70924c54a222890ebcb714dc39 (patch) | |
tree | 52255931bfea28c62361fb3ac94abee09b160ef4 /configure.ac | |
parent | a4298f86f5a6cd4033af541103d0a33a241edeeb (diff) |
do not set our clang timestamp to the timestamp of the clang binary
If the clang binary comes from a package which had been built before
any of our clang related sources were changed the last time, the timestamp
would be older and so there would be no rebuild. So do the stamp handling
the usual way, clang upgrades will work fine, downgrades will not, but
that's the same problem like with downgrading a library and its headers.
To somewhat mitigate the problem (Clang plugin doesn't get cleaned by
'make clean'), include the full Clang version (which includes SVN revision)
in config_clang.h and make all Clang plugin code include that, so
at least configure re-run will trigger a rebuild if necessary.
Change-Id: I993197f79e92e36105092c92c33b2e1db343e975
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bd5b0749240e..29cc3929b1ac 100644 --- a/configure.ac +++ b/configure.ac @@ -2906,6 +2906,7 @@ if test "$GCC" = "yes"; then CLANG_FULL_VERSION=`echo __clang_version__ | $CC -E -P -` CLANGVER=`echo $clang_version | $AWK -F. '{ print \$1*10000+\$2*100+\$3 }'` AC_MSG_RESULT([Clang $CLANG_FULL_VERSION, $CLANGVER]) + AC_DEFINE_UNQUOTED(CLANG_FULL_VERSION,$CLANG_FULL_VERSION) fi fi AC_SUBST(COM_GCC_IS_CLANG) |