Skip to content

Commit 861360c

Browse files
committed
[CRT/STARTUP] For some reason we get unresolved external symbol ___globallocalestatus when compiling with clang-cl. CORE-11799 CORE-14042 (reactos#94)
1 parent aeadcaf commit 861360c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/lib/crt/startup/crtexe.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,11 @@ pre_c_init (void)
128128
{
129129
__setusermatherr (_matherr);
130130
}
131-
131+
#ifndef __clang__ /* FIXME: CORE-14042 */
132132
if (__globallocalestatus == -1)
133133
{
134134
}
135+
#endif
135136
return 0;
136137
}
137138

0 commit comments

Comments
 (0)