When compiling my Rust app in Windows 10, it is linked against ucrtbase.dll
; however, this dll does not exist on some editions of Windows Server 2008 R2 Datacenter, making my app impossible to execute.
I tried setting -Ctarget-feature=+crt-static
as found here, but it did not do anything; ldd app.exe
still shows this dll.
Is there a way of removing the dependency on this dll?