mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
fix merge conflict with identifiers matching primitives
This commit is contained in:
parent
5766c8ebc8
commit
55be10486e
@ -6336,7 +6336,7 @@ joinpd1("sycl-std="),
|
|||||||
.{
|
.{
|
||||||
.name = "undefined",
|
.name = "undefined",
|
||||||
.syntax = .joined_or_separate,
|
.syntax = .joined_or_separate,
|
||||||
.zig_equivalent = .undefined,
|
.zig_equivalent = .@"undefined",
|
||||||
.pd1 = true,
|
.pd1 = true,
|
||||||
.pd2 = false,
|
.pd2 = false,
|
||||||
.psl = false,
|
.psl = false,
|
||||||
|
|||||||
@ -1661,7 +1661,7 @@ fn buildOutputType(
|
|||||||
.install_name => {
|
.install_name => {
|
||||||
install_name = it.only_arg;
|
install_name = it.only_arg;
|
||||||
},
|
},
|
||||||
.undefined => {
|
.@"undefined" => {
|
||||||
if (mem.eql(u8, "dynamic_lookup", it.only_arg)) {
|
if (mem.eql(u8, "dynamic_lookup", it.only_arg)) {
|
||||||
linker_allow_shlib_undefined = true;
|
linker_allow_shlib_undefined = true;
|
||||||
} else {
|
} else {
|
||||||
@ -4730,7 +4730,7 @@ pub const ClangArgIterator = struct {
|
|||||||
headerpad_max_install_names,
|
headerpad_max_install_names,
|
||||||
compress_debug_sections,
|
compress_debug_sections,
|
||||||
install_name,
|
install_name,
|
||||||
undefined,
|
@"undefined",
|
||||||
};
|
};
|
||||||
|
|
||||||
const Args = struct {
|
const Args = struct {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user