authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-01-05 17:41:22-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-01-05 17:41:22-07:00
log3e39d0c44fbf0cfb56ef0c00fc8ec7c0d5e1c1ec
tree2ff6f00b6545697c386740032f9a32d124cfb438
parent1a2dd85570a6439f82f7a0dd2cbf452198168c5a

minor fixups from moving identifiers and files around


2 files changed, 2 insertions(+), 2 deletions(-)

CMakeLists.txt+1-1
...@@ -559,7 +559,7 @@ set(ZIG_STAGE2_SOURCES...@@ -559,7 +559,7 @@ set(ZIG_STAGE2_SOURCES
559 "${CMAKE_SOURCE_DIR}/src/link/MachO.zig"559 "${CMAKE_SOURCE_DIR}/src/link/MachO.zig"
560 "${CMAKE_SOURCE_DIR}/src/link/MachO/Trie.zig"560 "${CMAKE_SOURCE_DIR}/src/link/MachO/Trie.zig"
561 "${CMAKE_SOURCE_DIR}/src/link/Wasm.zig"561 "${CMAKE_SOURCE_DIR}/src/link/Wasm.zig"
562 "${CMAKE_SOURCE_DIR}/src/link/cbe.h"562 "${CMAKE_SOURCE_DIR}/src/link/C/zig.h"
563 "${CMAKE_SOURCE_DIR}/src/link/msdos-stub.bin"563 "${CMAKE_SOURCE_DIR}/src/link/msdos-stub.bin"
564 "${CMAKE_SOURCE_DIR}/src/liveness.zig"564 "${CMAKE_SOURCE_DIR}/src/liveness.zig"
565 "${CMAKE_SOURCE_DIR}/src/llvm_backend.zig"565 "${CMAKE_SOURCE_DIR}/src/llvm_backend.zig"
src/Compilation.zig+1-1
...@@ -3123,7 +3123,7 @@ fn updateStage1Module(comp: *Compilation, main_progress_node: *std.Progress.Node...@@ -3123,7 +3123,7 @@ fn updateStage1Module(comp: *Compilation, main_progress_node: *std.Progress.Node
3123 });3123 });
3124 break :blk try directory.join(arena, &[_][]const u8{bin_basename});3124 break :blk try directory.join(arena, &[_][]const u8{bin_basename});
3125 } else "";3125 } else "";
3126 if (comp.emit_h != null) {3126 if (mod.emit_h != null) {
3127 log.warn("-femit-h is not available in the stage1 backend; no .h file will be produced", .{});3127 log.warn("-femit-h is not available in the stage1 backend; no .h file will be produced", .{});
3128 }3128 }
3129 const emit_h_path = try stage1LocPath(arena, mod.emit_h, directory);3129 const emit_h_path = try stage1LocPath(arena, mod.emit_h, directory);