diff options
author | John Hodge <tpg@ucc.asn.au> | 2017-11-18 17:42:09 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2017-11-18 17:47:12 +0800 |
commit | fa7ad5fb4963e8a6315a69fcba71cc63a75b1be5 (patch) | |
tree | 0e333a57f2500d4a032af9c2850c6e977a6ef7aa | |
parent | 991ff38cbbd4727700414a04af29ccf94e06e895 (diff) | |
download | mrust-fa7ad5fb4963e8a6315a69fcba71cc63a75b1be5.tar.gz |
minicargo - (minor) print location of build log when build fails
-rw-r--r-- | tools/minicargo/build.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/minicargo/build.cpp b/tools/minicargo/build.cpp index 04feb7e6..5204b6b6 100644 --- a/tools/minicargo/build.cpp +++ b/tools/minicargo/build.cpp @@ -750,6 +750,7 @@ bool Builder::spawn_process(const char* exe_name, const StringList& args, const DEBUG("Compiler was terminated with signal " << WTERMSIG(status)); else DEBUG("Compiler terminated for unknown reason, status=" << status); + DEBUG("See " << logfile << " for the compiler output"); return false; } #endif |