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 8e10b00 + 7a965ce commit 43ec13aCopy full SHA for 43ec13a
stdlib/public/Platform/ucrt.modulemap
@@ -92,6 +92,13 @@ module ucrt [system] {
92
module stdio {
93
header "stdio.h"
94
export *
95
+
96
+ // NOTE(compnerd) this is a horrible workaround for the fact that
97
+ // Microsoft has fully inlined nearly all of the printf family of
98
+ // functions in the headers which results in the definitions being elided
99
+ // resulting in undefined symbols. The legacy_stdio_definitions provides
100
+ // out-of-line definitions for these functions.
101
+ link "legacy_stdio_definitions"
102
}
103
104
module stdlib {
0 commit comments