Commits


elivdahan authored and Andy Green committed 1d6128d1fe7
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.