我最近搬到了python3,所以我正在尝试安装最新版本的Pylucene(版本6.5.0),它与python3兼容。
jcc3/sources/jcc.cpp: In function ‘PyObject* t_jccenv_strhash(PyObject*, PyObject*)’:
jcc3/sources/jcc.cpp:214:27: error: expected ‘)’ before ‘PRIxMAX’
sprintf(buffer, "%0*" PRIxMAX, (int) hexdig, hash);
^
jcc3/sources/jcc.cpp:214:54: warning: conversion lacks type at end of format [-Wformat=]
sprintf(buffer, "%0*" PRIxMAX, (int) hexdig, hash);
^
jcc3/sources/jcc.cpp:214:54: warning: too many arguments for format [-Wformat-extra-args]
error: command 'gcc' failed with exit status 1
但是,要安装jcc我得到以下错误,我不知道它为什么会发生: 你对这个问题有什么看法吗?
提前谢谢你, 阿明
答案 0 :(得分:1)
我遇到了同样的问题,通过设置__STDC_FORMAT_MACROS来解决:
我的JCC_CFLAGS设置为:
export JCC_CFLAGS="-v;-fno-strict-aliasing;-Wno-write-strings;-D__STDC_FORMAT_MACROS"
用于conda的JCC自动构建脚本的示例可在以下位置获得:
https://github.com/conda-forge/jcc-feedstock/blob/master/recipe/build.sh