-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This option replaces WITH_INIT_ALL_PATTERN and WITH_INIT_ALL_ZERO with INIT_ALL=pattern and INIT_ALL=zero respectively. As these are relatively rarely used options no backwards compatibility is implemented. Reviewed by: emaste Relnotes: yes Differential Revision: https://reviews.freebsd.org/D41675
- Loading branch information
1 parent
09e32b2
commit 2befa26
Showing
9 changed files
with
55 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Control default initialization of stack variables in C and C++ code. | ||
Options other than | ||
.Li none | ||
require the Clang compiler or GCC 12.0 or later. | ||
The default value is | ||
.Li none . | ||
Valid values are: | ||
.Bl -tag -width indent | ||
.It Li none | ||
Do not initialize stack variables (standard C/C++ behavior). | ||
.It Li pattern | ||
Build the base system or kernel with stack variables initialized to | ||
.Pq compiler defined | ||
debugging patterns on function entry. | ||
.It Li zero | ||
Build the base system or kernel with stack variables initialized | ||
to zero on function entry. | ||
This value is converted to | ||
.Li none | ||
for amd64 kernel builds due to incompatability with ifunc memset. | ||
.El |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.