| author | |
| committer | |
| log | 3bce5b2f30c2f711a5e8cf481fc8f6381f7b1436 |
| tree | 844f770aefe3e6f66c5528c8f6ab166ad3a02bab |
| parent | 99203e4177a7c2fe80b1c08d86c295c61795f33f |
1 files changed, 3 insertions(+), 1 deletions(-)
src/stage1/os.cpp+3-1| ... | @@ -42,7 +42,9 @@ | ... | @@ -42,7 +42,9 @@ |
| 42 | #include <fcntl.h> | 42 | #include <fcntl.h> |
| 43 | #include <ntsecapi.h> | 43 | #include <ntsecapi.h> |
| 44 | 44 | ||
| 45 | #if defined(_MSC_VER) | 45 | // Workaround an upstream LLVM issue. |
| 46 | // See https://github.com/ziglang/zig/issues/7614#issuecomment-752939981 | ||
| 47 | #if defined(_MSC_VER) && defined(_WIN64) | ||
| 46 | typedef SSIZE_T ssize_t; | 48 | typedef SSIZE_T ssize_t; |
| 47 | #endif | 49 | #endif |
| 48 | #else | 50 | #else |