We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e82f385 commit 98daad1Copy full SHA for 98daad1
build-internals/build.zig
@@ -83,6 +83,7 @@ pub const Target = struct {
83
hal: ?HardwareAbstractionLayer = null,
84
board: ?Board = null,
85
linker_script: ?LinkerScript = null,
86
+ stack: ?Stack = null,
87
entry: ?Build.Step.Compile.Entry = null,
88
patch_elf: ?*const fn (*Build.Dependency, LazyPath) LazyPath = null,
89
};
@@ -102,6 +103,7 @@ pub const Target = struct {
102
103
.hal = options.hal orelse from.hal,
104
.board = options.board orelse from.board,
105
.linker_script = options.linker_script orelse from.linker_script,
106
+ .stack = options.stack orelse from.stack,
107
.entry = options.entry orelse from.entry,
108
.patch_elf = options.patch_elf orelse from.patch_elf,
109
0 commit comments