Alex Rønne Petersen
Alex Rønne Petersen
> `zig build -Dshared=true` will generate `lua` and `lua.so` file. the symbols are in `lua.so` file. > > `zig build` will only generate one `lua` file and no symbols. Well,...
`std.Build.Step.Compile` has an `rdynamic` field that you can set.
I'm going to close this as I don't *think* there's a Zig bug here, but it's honestly a bit confusing to decode this issue. If I'm wrong, please comment with...
https://github.com/ziglang/zig/pull/21263
``` -- Check for working C compiler: /home/alexrp/Source/zig-bootstrap/out/host/bin/zig -- Check for working C compiler: /home/alexrp/Source/zig-bootstrap/out/host/bin/zig - broken CMake Error at /usr/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:67 (message): The C compiler "/home/alexrp/Source/zig-bootstrap/out/host/bin/zig" is not able to...
@koachan any chance you have some ideas off the top of your head re: the relocation errors above?
https://github.com/llvm/llvm-project/pull/137919 will unblock this, I just need to find time to write some tests to make it mergeable.
Hmm. I believe that not all x86-32 targets actually define `long double` to be `f80`; for some, it's just `f64`. There's also the fact that, at least without SSE, even...
This needs a rebase to deal with the merge conflict.
> This should be easy to implement after #21697 It's my understanding that the intent actually is for #21697 to implement this, no? @mlugg > Though currently LLVM doesn't seem...