diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2014-02-12 10:40:07 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2014-02-12 10:40:07 +0000 |
commit | fdd4f30f0e25f5df164f724d9d324f84bd749a6c (patch) | |
tree | 78fe864410f97fc90de26bd350589ed28318551b /clang/include/clang-c/BuildSystem.h | |
parent | f430da4de68b5569634b03df30b38d1133dc169b (diff) | |
download | bcm5719-llvm-fdd4f30f0e25f5df164f724d9d324f84bd749a6c.tar.gz bcm5719-llvm-fdd4f30f0e25f5df164f724d9d324f84bd749a6c.zip |
'svn add' files I forgot for r201224 (Add an option to allow Clang verify
source files for a module only once during)
llvm-svn: 201225
Diffstat (limited to 'clang/include/clang-c/BuildSystem.h')
-rw-r--r-- | clang/include/clang-c/BuildSystem.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/clang/include/clang-c/BuildSystem.h b/clang/include/clang-c/BuildSystem.h new file mode 100644 index 00000000000..400ee6e0ddc --- /dev/null +++ b/clang/include/clang-c/BuildSystem.h @@ -0,0 +1,44 @@ +/*==-- clang-c/BuildSysetm.h - Utilities for use by build systems -*- C -*-===*\ +|* *| +|* The LLVM Compiler Infrastructure *| +|* *| +|* This file is distributed under the University of Illinois Open Source *| +|* License. See LICENSE.TXT for details. *| +|* *| +|*===----------------------------------------------------------------------===*| +|* *| +|* This header provides various utilities for use by build systems. *| +|* *| +\*===----------------------------------------------------------------------===*/ + +#ifndef CLANG_BUILD_SYSTEM_H +#define CLANG_BUILD_SYSTEM_H + +#include "clang-c/Platform.h" +#include "clang-c/CXString.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \defgroup BUILD_SYSTEM Build system utilities + * @{ + */ + +/** + * \brief Return the timestamp for use with Clang's + * \c -fbuild-session-timestamp= option. + */ +CINDEX_LINKAGE unsigned long long clang_getBuildSessionTimestamp(void); + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif // CLANG_BUILD_SYSTEM_H + |