diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-10 20:11:56 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-10 20:11:56 +0000 |
commit | dd464df687faf544e83684d0c0e4da87c05f8bfe (patch) | |
tree | 66f95a61bd7cc78619360621787c82f9171a6e31 /include/llvm/Config | |
parent | faa19c32a244efdd3d9d546d938389a42537d949 (diff) | |
download | external_llvm-dd464df687faf544e83684d0c0e4da87c05f8bfe.zip external_llvm-dd464df687faf544e83684d0c0e4da87c05f8bfe.tar.gz external_llvm-dd464df687faf544e83684d0c0e4da87c05f8bfe.tar.bz2 |
Add new configure option, --disable-timestamps, intended to turn off anything which would mess up binary/object comparisons. Currently:
- Disables 'Built on ...' in 'foo --version'.
- Disables timestamps from being embedded into .dir files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Config')
-rw-r--r-- | include/llvm/Config/config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Config/config.h.in b/include/llvm/Config/config.h.in index c2ab23e..99d2ab5 100644 --- a/include/llvm/Config/config.h.in +++ b/include/llvm/Config/config.h.in @@ -24,6 +24,9 @@ /* Define if threads enabled */ #undef ENABLE_THREADS +/* Define if timestamp information (e.g., __DATE___) is allowed */ +#undef ENABLE_TIMESTAMPS + /* Define to 1 if you have the `argz_append' function. */ #undef HAVE_ARGZ_APPEND |