David

Results 23 comments of David
trafficstars

Yes, it did. It just doesn't find the `main` entry point (which is normal because I don't have an entry point in those files), it can resolve the LLVM symbols...

So after trying to understand what Zig does to link against libstdc++, I came out with something that works: ```zig compiler.addObjectFile(.{ .cwd_relative = "/usr/lib/gcc/x86_64-pc-linux-gnu/13.2.1/../../../../lib/libstdc++.so" }); compiler.addIncludePath(.{ .cwd_relative = "/usr/include"}); compiler.addIncludePath(.{...

For such an specific case I would say you should write Zig code to write Zig code