doc: add note about reproducible builds

This commit is contained in:
Andrew Kelley 2018-09-22 10:22:01 -04:00
parent 5c15c5fc48
commit 3c1f9baff1
No known key found for this signature in database
GPG Key ID: 4E7CD66038A4D47C

View File

@ -6502,6 +6502,7 @@ pub fn build(b: *Builder) void {
<li>Safety checks enabled</li>
<li>Slow runtime performance</li>
<li>Large binary size</li>
<li>No reproducible build requirement</li>
</ul>
{#header_close#}
{#header_open|ReleaseFast#}
@ -6511,6 +6512,7 @@ pub fn build(b: *Builder) void {
<li>Safety checks disabled</li>
<li>Slow compilation speed</li>
<li>Large binary size</li>
<li>Reproducible build</li>
</ul>
{#header_close#}
{#header_open|ReleaseSafe#}
@ -6520,6 +6522,7 @@ pub fn build(b: *Builder) void {
<li>Safety checks enabled</li>
<li>Slow compilation speed</li>
<li>Large binary size</li>
<li>Reproducible build</li>
</ul>
{#header_close#}
{#header_open|ReleaseSmall#}
@ -6529,6 +6532,7 @@ pub fn build(b: *Builder) void {
<li>Safety checks disabled</li>
<li>Slow compilation speed</li>
<li>Small binary size</li>
<li>Reproducible build</li>
</ul>
{#header_close#}
{#see_also|Compile Variables|Zig Build System|Undefined Behavior#}