We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ef4c23 + c826dea commit 08cf801Copy full SHA for 08cf801
stdlib/public/Platform/ucrt.modulemap
@@ -60,6 +60,13 @@ module ucrt [system] {
60
module stdio {
61
header "stdio.h"
62
export *
63
+
64
+ // NOTE(compnerd) this is a horrible workaround for the fact that
65
+ // Microsoft has fully inlined nearly all of the printf family of
66
+ // functions in the headers which results in the definitions being elided
67
+ // resulting in undefined symbols. The legacy_stdio_definitions provides
68
+ // out-of-line definitions for these functions.
69
+ link "legacy_stdio_definitions"
70
}
71
72
module stdlib {
0 commit comments