-
- Downloads
cmake: Fix bzero mis-detection on MinGW
Using a C compiler ignores non-existent functions, and tries to link them anyway. The compiler optimizes `bzero(buf, 1)` to `movb $0x0,0xf(%esp)`, so bzero is not called at all, and the linker succeeds. Increase the buffer size to 100 to avoid this optimization.
Loading
Please register or sign in to comment