Commit 32901926f0

Andrew Kelley <superjoe30@gmail.com>
2018-08-24 21:43:48
compilation unit cwd dir appears to be unnecessary on macos
1 parent 4e7c255
Changed files (1)
std
debug
std/debug/index.zig
@@ -1056,8 +1056,7 @@ fn getLineNumberInfoMacOs(di: *DebugInfo, symbol: MachoSymbol, target_address: u
     ptr += opcode_base - 1;
 
     var include_directories = ArrayList([]const u8).init(di.allocator());
-    //try include_directories.append(compile_unit_cwd);
-    try include_directories.append("./");
+    try include_directories.append("");
     while (true) {
         const dir = readStringMem(&ptr);
         if (dir.len == 0) break;