我正在使用MinGW构建zxing,但它因这些错误而失败:
build\core\tests\src\common\BitArrayTest.cpp: In static member function 'static void zxing::BitArrayTest::fillRandom(zxing::BitArray&, zxing::BitArray&)':
build\core\tests\src\common\BitArrayTest.cpp:99:39: error: 'srandom' was not declared in this scope
build\core\tests\src\common\BitArrayTest.cpp:101:15: error: 'random' was not declared in this scope
scons: *** [build\core\tests\src\common\BitArrayTest.o] Error 1
我尝试将-DANN_NO_RANDOM
添加到编译器标志中,但它没有帮助。
答案 0 :(得分:6)
srandom
是linux
函数,而是使用srand,如果您不想更改外部库中的代码,只需将-Dsrandom=srand -Drandom=rand
添加到编译器标志。
答案 1 :(得分:0)
您需要包含<stdlib.h>
标头文件。