-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion.cc
More file actions
49 lines (44 loc) · 1.88 KB
/
Version.cc
File metadata and controls
49 lines (44 loc) · 1.88 KB
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
#include <llvm/Config/llvm-config.h>
#include "Log.hh"
#include "Version.hh"
namespace pcc {
PCC_NORETURN void ShowVersion() {
std::cerr
<< PCC_NAME " version " PCC_VERSION_STRING "\n"
<< "Copyright (C) 2020 Hanjie Wu <nagi@zju.edu.cn>\n\n"
"This program is free software; you can redistribute it and/or "
"modify\n"
"it under the terms of the GNU General Public License as published "
"by\n"
"the Free Software Foundation; either version 2 of the License, or\n"
"(at your option) any later version.\n\n"
"Configurations:\n"
" LLVM Version: " LLVM_VERSION_STRING "\n"
" Host Platform: " PCC_OSNAME "\n"
" Default Target: " LLVM_DEFAULT_TARGET_TRIPLE "\n"
" Built on: " __DATE__ " " __TIME__
<< std::endl;
std::exit(0);
}
PCC_NORETURN void ShowHelp() {
std::cerr << PCC_NAME " version " PCC_VERSION_STRING "\n"
<< "Usage: " << GetExecutableName()
<< " [-vVhiScad] [-O <0,1,2,3>] [-o <output>] "
"file...\n"
" -v Verbose mode.\n"
" -vv Very verbose mode.\n"
" -V Show version and exit.\n"
" -h Show this help and exit.\n"
"\n"
" -i Generate LLVM IR (default behavior).\n"
" -S Compile to assembly file.\n"
" -c Compile to object file.\n"
" -o <output> Specify output file name.\n"
" -O <0,1,2,3> Specify optimization level.\n"
"\n"
" -a Dump the AST.\n"
" -d Generate a dot file for AST."
<< std::endl;
std::exit(0);
}
} // namespace pcc