From 000fc19f20f1020e193bf80c26793ff4d4b4348e Mon Sep 17 00:00:00 2001 From: Simon McMahon <147778033+smcmahonibm@users.noreply.github.com> Date: Wed, 18 Jun 2025 13:28:24 +1000 Subject: [PATCH] Update README.md remove -k so it will stop at first error --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4aa683f..abf333d 100644 --- a/README.md +++ b/README.md @@ -9,22 +9,22 @@ For a debug build on any platform specify CONFIG=debug as an argument to make. ### Linux 64-bit ```bash -make -k -C icc OPSYS=AMD64_LINUX create_all -make -k -C icc OPSYS=AMD64_LINUX all +make -C icc OPSYS=AMD64_LINUX create_all +make -C icc OPSYS=AMD64_LINUX all ``` ### Linux 32-bit ```bash -make -k -C icc OPSYS=LINUX create_all -make -k -C icc OPSYS=LINUX all +make -C icc OPSYS=LINUX create_all +make -C icc OPSYS=LINUX all ``` ### Windows 64-bit ```bash -make -k -C icc OPSYS=WIN64_VS2022 create_all -make -k -C icc OPSYS=WIN64_VS2022 all +make -C icc OPSYS=WIN64_VS2022 create_all +make -C icc OPSYS=WIN64_VS2022 all ``` This build is not constrained to MS VS 2022 but is tested on that platform. @@ -38,4 +38,4 @@ NASM should be added to the windows PATH environment variable. Run the appropriate vcvars.bat file in a cmd.exe or otherwise use a development console before running make. Note: Windows utilities which use a Unix style PATH such as the gnumake available in msys2 are not supported. -Note: Cygwin is not supported. \ No newline at end of file +Note: Cygwin is not supported.