From 6e6ec3d71d1b5ecff8ad6bff5e159417abfa5382 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 21 Jan 2020 21:01:36 -0500 Subject: [PATCH] put hack back in to disable windows native cpu features See #508. This can be removed when we upgrade to LLVM 10. --- src-self-hosted/stage1.zig | 23 +++++++++++++++++------ src/codegen.cpp | 6 +++--- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/src-self-hosted/stage1.zig b/src-self-hosted/stage1.zig index e6756a345..c1c48753a 100644 --- a/src-self-hosted/stage1.zig +++ b/src-self-hosted/stage1.zig @@ -659,11 +659,20 @@ const Stage2CpuFeatures = struct { const target = try Target.parse(mem.toSliceConst(u8, zig_triple)); const arch = target.Cross.arch; const cpu_features = try cpuFeaturesFromLLVM(arch, llvm_cpu_name_z, llvm_cpu_features); - switch (cpu_features) { - .baseline => return createBaseline(allocator, arch), - .cpu => |cpu| return createFromCpu(allocator, arch, cpu), - .features => |features| return createFromCpuFeatures(allocator, arch, features), + const result = switch (cpu_features) { + .baseline => try createBaseline(allocator, arch), + .cpu => |cpu| try createFromCpu(allocator, arch, cpu), + .features => |features| try createFromCpuFeatures(allocator, arch, features), + }; + // LLVM creates invalid binaries on Windows sometimes. + // See https://github.com/ziglang/zig/issues/508 + // As a workaround we do not use target native features on Windows. + // This logic is repeated in codegen.cpp + if (target.isWindows() or target.isUefi()) { + result.llvm_cpu_name = ""; + result.llvm_features_str = ""; } + return result; } fn createFromCpu(allocator: *mem.Allocator, arch: Target.Arch, cpu: *const Target.Cpu) !*Self { @@ -742,9 +751,11 @@ const Stage2CpuFeatures = struct { for (arch.allFeaturesList()) |feature, index| { if (!feature_set.isEnabled(@intCast(u8, index))) continue; - try builtin_str_buffer.append(" ."); + // TODO some kind of "zig identifier escape" function rather than + // unconditionally using @"" syntax + try builtin_str_buffer.append(" .@\""); try builtin_str_buffer.append(feature.name); - try builtin_str_buffer.append(",\n"); + try builtin_str_buffer.append("\",\n"); } try builtin_str_buffer.append( diff --git a/src/codegen.cpp b/src/codegen.cpp index f7cfc95b3..c2dcdb38b 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -8785,15 +8785,15 @@ static void init(CodeGen *g) { const char *target_specific_features = ""; if (g->zig_target->is_native) { + target_specific_cpu_args = ZigLLVMGetHostCPUName(); + target_specific_features = ZigLLVMGetNativeFeatures(); // LLVM creates invalid binaries on Windows sometimes. // See https://github.com/ziglang/zig/issues/508 // As a workaround we do not use target native features on Windows. + // This logic is repeated in stage1.zig if (g->zig_target->os == OsWindows || g->zig_target->os == OsUefi) { target_specific_cpu_args = ""; target_specific_features = ""; - } else { - target_specific_cpu_args = ZigLLVMGetHostCPUName(); - target_specific_features = ZigLLVMGetNativeFeatures(); } }