From ddbafe363a835b45672c5dfcd33dbdad57d2757d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Bac=C5=82awski?= Date: Sun, 17 Apr 2016 14:01:14 +0200 Subject: [PATCH] Give instructions on how to capture log file from build process. --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 024e6c3a..0562f258 100644 --- a/README.md +++ b/README.md @@ -104,5 +104,12 @@ Follow steps listed below: # ./toolchain-m68k --prefix=/opt/m68k-amigaos install-sdk ahi cgx mui ``` -**Note:** *If the build process fails, please write me an e-mail. I'll try to help out. Don't forget to put into e-mail as much data about your environment as possible!* +#### What if something goes wrong? +If the build process fails, please write me an e-mail. I'll try to help out. Don't forget to put into e-mail as much data about your environment as possible! +It's **vitally important** to send me a full log from build process. You can capture it by redirecting output to a file with following command: + +``` +# rm -rf .build-m68k +# ./toolchain-m68k build 2>&1 | tee build.log +```