so on rust, you can static link crt, this is useful especially for windows since there’s a requirement for c dlls that you have to install manually. this isn’t good for my game
with that said, i also wanna keep libc dynamically linked on linux so no issues arise.
i’m also intending on keeping full cross compilation support
i understand that this post is probably a question from the fact that it’s in the Help category and describes the edges of a problem statement.
however, there isn’t actually a question here, which might make it more difficult for people to help you. for example, are you asking whether it’s possible to statically link libc (is this the same as crt for you?) in a Zig project? or are you asking for pointers on how to go about setting your build.zig to take advantage of this possibility? have you gotten stuck somewhere along the process?
I don’t know what the question is either, but I’ll go ahead and say that static linking the crt on Windows doesn’t work at the moment, because Zig uses MinGW, which only supports dynamic linking. Furthermore, Windows, overall, only supports dynamic linking, because syscalls aren’t stable.
Static linking on Linux is feasible and highly recommended.
So it looks like you got it backwards.
Rust standard library requires C runtime library (crt) to operate.
Zig standard library calls the operating system directly without using the C runtime library for both linux and windows. But if you have C dependencies you need to link to the C runtime.
Starting with Windows 10 the universal C runtime is shipped with Windows and is updated by the system using windows update. And zig uses the universal C runtime
my understanding is that zig can link against MSVC libc! unfortunately i forgot whether there was some obstruction for cross-compiling to link against MSVC that required manual intervention or if there are licensing issues preventing Zig from linking against it out of the box…
So it seems that when link_mode is .static (which is the default for the generic windows-msvc target), Zig is statically linking the crt libraries (as described here).
If you are still concerned, you can take a look at dumpbin.exe /imports your_exe.exe to check the resulting executable. My experiments show the same results for a printf hello world program as when compiling with cl.exe /MT except Zig also links against ntdll.dll
AFAIK this is not recommended anymore since around Windows 10 and the ‘Universal C Runtime’ (UCRT), e.g. the UCRT DLL installation is now managed centrally by the Windows Update Process, and not expected to be done by an application (unless you need to support older Windows versions than 10)
I still prefer linking the CRT statically though, it’s just less hassle all around.
But as far as I understand, binaries built with _-windows-gnu build and statically link the mingw “gnu” part, and just link against the universal crt. So there is no need to install anything to run the produced binaries (at least since Windows 10).