blob: ca65130ffc8dea85893edf2aad51692251d51d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
//===- Version.cpp - Clang Version Number -----------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines several version-related utility functions for Clang.
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/raw_ostream.h"
#include <cstring>
#include <cstdlib>
using namespace std;
namespace clang {
llvm::StringRef getClangRepositoryPath() {
static const char *Path = 0;
if (Path)
return Path;
static char URL[] = "$URL$";
char *End = strstr(URL, "/lib/Basic");
if (End)
*End = 0;
End = strstr(URL, "/clang/tools/clang");
if (End)
*End = 0;
char *Begin = strstr(URL, "cfe/");
if (Begin) {
Path = Begin + 4;
return Path;
}
Path = URL;
return Path;
}
llvm::StringRef getClangRevision() {
#ifndef SVN_REVISION
// Subversion was not available at build time?
return llvm::StringRef();
#else
static std::string revision;
if (revision.empty()) {
llvm::raw_string_ostream Out(revision);
Out << strtol(SVN_REVISION, 0, 10);
}
return revision;
#endif
}
llvm::StringRef getClangFullRepositoryVersion() {
static std::string buf;
if (buf.empty()) {
llvm::raw_string_ostream Out(buf);
Out << getClangRepositoryPath();
llvm::StringRef Revision = getClangRevision();
if (!Revision.empty())
Out << ' ' << Revision;
}
return buf;
}
} // end namespace clang
|