ubuntu 18.04 lz4 编译冲突
error: conflicting declaration ‘typedef struct LZ4_streamDecode_t LZ4_streamDecode_t’
typedef struct { unsigned long long table[LZ4_STREAMDECODESIZE_U64]; } LZ4_streamDecode_t;
解决办法:
https://github.com/mariusmuja/flann/issues/307
将文件: /usr/include/lz4.h 和 /usr/include/flann/ext/lz4.h 下的 #pragma once
替换为:
ifndef LZ4_H_2983827168210
define LZ4_H_2983827168210
…
endif /* LZ4_H_2983827168210 */
————————————————
版权声明:本文为CSDN博主「w_tom」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/w_tom/article/details/89632308
网友评论