macOS: release builds from source using `zig build` uses ReleaseLocal (#9201)
This fixes codesign issues that are common. The official release process does not use this, but it is useful for local builds.pull/9203/head
parent
06ad3b77b7
commit
9f726492ac
|
|
@ -31,7 +31,7 @@ pub fn init(
|
||||||
.ReleaseSafe,
|
.ReleaseSafe,
|
||||||
.ReleaseSmall,
|
.ReleaseSmall,
|
||||||
.ReleaseFast,
|
.ReleaseFast,
|
||||||
=> "Release",
|
=> "ReleaseLocal",
|
||||||
};
|
};
|
||||||
|
|
||||||
const xc_arch: ?[]const u8 = switch (deps.xcframework.target) {
|
const xc_arch: ?[]const u8 = switch (deps.xcframework.target) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue