我正在尝试为Python构建scikit-learn库,它将构建文件作为Windows 32位系统中的c ++文件。在构建时我收到以下错误。
undefined reference to `__sync_fetch_and_add_4'
c:/mingw/bin/../lib/gcc/mingw32/4.7.2/../../../../mingw32/bin/ld.exe: build\temp
.win32-2.7\Release\sklearn\ensemble\_gradient_boosting.o: bad reloc address 0x0
in section `.data'
collect2.exe: error: ld returned 1 exit status
error: Command "g++ -shared build\temp.win32-2.7\Release\sklearn\ensemble\_gradi
ent_boosting.o -LC:\Python27\libs -LC:\Python27\PCbuild -Lbuild\temp.win32-2.7 -
lpython27 -lmsvcr90 -o build\lib.win32-2.7\sklearn\ensemble\_gradient_boosting.p
yd" failed with exit status 1
这是什么原因?第一行对于未定义的引用意味着什么? 我该如何解决这个问题?
答案 0 :(得分:0)
您的问题缺少一些必要的信息,例如您正在使用的Python版本,但我想这是错误消息的2.7。您是否尝试在任何其他平台上构建它?我听说Fedora非常适合这种东西。