J.C. Moyer
J.C. Moyer
I have an executable that I'm try to build linked to libc on Windows. If I try to use `std.os.getenv` I get this linker error: ``` lld-link: error: undefined symbol:...
Minimal repro: ```zig const std = @import("std"); pub fn makeArray() [4]u8 { var result = std.mem.zeroes([4]u8); std.mem.writeIntBig(u32, result[0..][0..4], 0xabcdabcd); return result; } const x = makeArray(); pub fn main() !void...
### Zig Version 0.10.0-dev.3952+9e070b653 ### Steps to Reproduce Attempt to compile: ```zig const T = enum(u8) { a = 0x12, b = 0x12, }; pub fn main() !void { const...
In my setup I'm compiling Lua as part of my project, and when I turn on LTO via `CMAKE_INTERPROCEDURAL_OPTIMIZATION`, the return listed below is considered unreachable by MSVC. I guess...
Hello, first of all thank you for releasing this project. The SC-55 is legendary and it is great to see such an important piece of history preserved. The main goal...
### Description / Steps to reproduce the issue With both `mingw-w64-x86_64-gcc-ada` and `mingw-w64-ucrt-x86_64-gcc-ada`, gdb is unable to catch Ada exceptions even when compiling with `-g`. `main.adb`: ```ada procedure main is...