Skip to content

Commit 000fc19

Browse files
authored
Update README.md
remove -k so it will stop at first error
1 parent 6c9c7b5 commit 000fc19

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ For a debug build on any platform specify CONFIG=debug as an argument to make.
99
### Linux 64-bit
1010

1111
```bash
12-
make -k -C icc OPSYS=AMD64_LINUX create_all
13-
make -k -C icc OPSYS=AMD64_LINUX all
12+
make -C icc OPSYS=AMD64_LINUX create_all
13+
make -C icc OPSYS=AMD64_LINUX all
1414
```
1515

1616
### Linux 32-bit
1717

1818
```bash
19-
make -k -C icc OPSYS=LINUX create_all
20-
make -k -C icc OPSYS=LINUX all
19+
make -C icc OPSYS=LINUX create_all
20+
make -C icc OPSYS=LINUX all
2121
```
2222

2323
### Windows 64-bit
2424

2525
```bash
26-
make -k -C icc OPSYS=WIN64_VS2022 create_all
27-
make -k -C icc OPSYS=WIN64_VS2022 all
26+
make -C icc OPSYS=WIN64_VS2022 create_all
27+
make -C icc OPSYS=WIN64_VS2022 all
2828
```
2929

3030
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.
3838
Run the appropriate vcvars.bat file in a cmd.exe or otherwise use a development console before running make.
3939

4040
Note: Windows utilities which use a Unix style PATH such as the gnumake available in msys2 are not supported.
41-
Note: Cygwin is not supported.
41+
Note: Cygwin is not supported.

0 commit comments

Comments
 (0)