zig puts temporary object files in zig-cache folder

See #298
This commit is contained in:
Andrew Kelley
2017-04-28 02:22:12 -04:00
parent 458afb0ef9
commit a147f06585
12 changed files with 124 additions and 17 deletions

View File

@@ -21,6 +21,8 @@ const char *err_str(int err) {
case ErrorFileTooBig: return "file too big";
case ErrorDivByZero: return "division by zero";
case ErrorOverflow: return "overflow";
case ErrorPathAlreadyExists: return "path already exists";
case ErrorUnexpected: return "unexpected error";
}
return "(invalid error)";
}