authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-08-04 15:15:11-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-08-04 15:15:25-04:00
log30466bccefedd5e795b72b422f98b8a58e786289
treeb94fd9d5783f642698e7feb5634c83679e92ae98
parent8c99a5199324a1aabba698a5127e9ce1df294aa7
signaturelock-open Commit is signed but in an unrecognized format.

update CONTRIBUTING.md


1 files changed, 6 insertions(+), 6 deletions(-)

CONTRIBUTING.md+6-6
...@@ -25,6 +25,7 @@ Here are some examples:...@@ -25,6 +25,7 @@ Here are some examples:
2525
26 * [Iterative Replacement of C with Zig](http://tiehuis.github.io/blog/zig1.html)26 * [Iterative Replacement of C with Zig](http://tiehuis.github.io/blog/zig1.html)
27 * [The Right Tool for the Right Job: Redis Modules & Zig](https://www.youtube.com/watch?v=eCHM8-_poZY)27 * [The Right Tool for the Right Job: Redis Modules & Zig](https://www.youtube.com/watch?v=eCHM8-_poZY)
28 * [Writing a small ray tracer in Rust and Zig](https://nelari.us/post/raytracer_with_rust_and_zig/)
2829
29Zig is a brand new language, with no advertising budget. Word of mouth is the30Zig is a brand new language, with no advertising budget. Word of mouth is the
30only way people find out about the project, and the more people hear about it,31only way people find out about the project, and the more people hear about it,
...@@ -45,8 +46,8 @@ The most highly regarded argument in such a discussion is a real world use case....@@ -45,8 +46,8 @@ The most highly regarded argument in such a discussion is a real world use case.
4546
46The issue label47The issue label
47[Contributor Friendly](https://github.com/ziglang/zig/issues?q=is%3Aissue+is%3Aopen+label%3A%22contributor+friendly%22)48[Contributor Friendly](https://github.com/ziglang/zig/issues?q=is%3Aissue+is%3Aopen+label%3A%22contributor+friendly%22)
48exists to help contributors find issues that are "limited in scope and/or49exists to help you find issues that are **limited in scope and/or
49knowledge of Zig internals."50knowledge of Zig internals.**
5051
51### Editing Source Code52### Editing Source Code
5253
...@@ -61,8 +62,7 @@ To test changes, do the following from the build directory:...@@ -61,8 +62,7 @@ To test changes, do the following from the build directory:
6162
621. Run `make install` (on POSIX) or631. Run `make install` (on POSIX) or
63 `msbuild -p:Configuration=Release INSTALL.vcxproj` (on Windows).64 `msbuild -p:Configuration=Release INSTALL.vcxproj` (on Windows).
642. `bin/zig build --build-file ../build.zig test` (on POSIX) or652. `bin/zig build test` (on POSIX) or `bin\zig.exe build test` (on Windows).
65 `bin\zig.exe build --build-file ..\build.zig test` (on Windows).
6666
67That runs the whole test suite, which does a lot of extra testing that you67That runs the whole test suite, which does a lot of extra testing that you
68likely won't always need, and can take upwards of 2 hours. This is what the68likely won't always need, and can take upwards of 2 hours. This is what the
...@@ -79,8 +79,8 @@ Another example is choosing a different set of things to test. For example,...@@ -79,8 +79,8 @@ Another example is choosing a different set of things to test. For example,
79not the other ones. Combining this suggestion with the previous one, you could79not the other ones. Combining this suggestion with the previous one, you could
80do this:80do this:
8181
82`bin/zig build --build-file ../build.zig test-std -Dskip-release` (on POSIX) or82`bin/zig build test-std -Dskip-release` (on POSIX) or
83`bin\zig.exe build --build-file ..\build.zig test-std -Dskip-release` (on Windows).83`bin\zig.exe build test-std -Dskip-release` (on Windows).
8484
85This will run only the standard library tests, in debug mode only, for all85This will run only the standard library tests, in debug mode only, for all
86targets (it will cross-compile the tests for non-native targets but not run86targets (it will cross-compile the tests for non-native targets but not run