| author | |
| committer | |
| log | fb67a7260d1e7fc8ff81fa9e3cc5340422363727 |
| tree | 7a4719f270626e8524bbb48e25f286bd622ac66e |
| parent | 56a024bbfcd8419868f51e0fb6cf16451920070d |
1 files changed, 1 insertions(+), 1 deletions(-)
src-self-hosted/link.zig+1-1| ... | ... | @@ -11,7 +11,7 @@ const codegen = @import("codegen.zig"); |
| 11 | 11 | /// with 0o755 permissions, but it works appropriately if the system is configured |
| 12 | 12 | /// more leniently. As another data point, C's fopen seems to open files with the |
| 13 | 13 | /// 666 mode. |
| 14 | const executable_mode = 0o777; | |
| 14 | const executable_mode = if (std.Target.current.os.tag == .windows) 0 else 0o777; | |
| 15 | 15 | const default_entry_addr = 0x8000000; |
| 16 | 16 | |
| 17 | 17 | pub const ErrorMsg = struct { |