aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-01-03 20:53:53 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-01-03 20:53:53 -0500
commit8eae4a096752b7e477d16ee0c5fd40d8871e973a (patch)
tree3cdbfaeb3c53eaf551ab59bd508edbb4c2bddc5d /src/main.cpp
parent1d77f8db289e6eefce827fe37d27e72b68362943 (diff)
parent5a800db48cde943a7fd80fdbfb42bc69a325ca76 (diff)
downloadzig-8eae4a096752b7e477d16ee0c5fd40d8871e973a.tar.gz
zig-8eae4a096752b7e477d16ee0c5fd40d8871e973a.zip
Merge branch 'master' into llvm6
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 66ffbbde82..a3ca1bc164 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -267,7 +267,13 @@ static void add_package(CodeGen *g, CliPkg *cli_pkg, PackageTableEntry *pkg) {
int main(int argc, char **argv) {
if (argc == 2 && strcmp(argv[1], "BUILD_INFO") == 0) {
- printf("%s\n%s\n", ZIG_CMAKE_BINARY_DIR, ZIG_CXX_COMPILER);
+ printf("%s\n%s\n%s\n%s\n%s\n%s\n",
+ ZIG_CMAKE_BINARY_DIR,
+ ZIG_CXX_COMPILER,
+ ZIG_LLD_INCLUDE_PATH,
+ ZIG_LLD_LIBRARIES,
+ ZIG_STD_FILES,
+ ZIG_C_HEADER_FILES);
return 0;
}