gpt4 book ai didi

python - 为 Python 模块编译 C 代码时出现问题

转载 作者:行者123 更新时间:2023-11-30 17:28:04 27 4
gpt4 key购买 nike

我有一个Python脚本,它将打开并解析一些DAT文件,其中包含压缩的(QFS压缩,因此没有内置函数来处理它)十六进制数据。我在 Github 上找到了一个 C 脚本,它既可以解压,又可以重新压缩,并且可以从 Python 调用。

Canopy 的 Python 2.7 无法与我的 Win8.1 64 位机器一起编译 C 代码。它确实编译时有错误,但在调用时会导致内核崩溃,然后我必须重新编译,否则会出现 dll 错误(它找到 dll 但无法使用它)。

所以我通过 Anaconda 安装了 Python 3.4。它在我的机器上运行良好,但在编译过程中出现错误。

最后似乎是相关的 C 代码。缺少的代码是实际使用的算法。代码本身可以在以下位置查看 https://github.com/wouanagaine/SC4Mapper-2013/blob/master/Modules/qfs.c如果您需要更多。如果您想查看 setup.py 代码,它位于同一个“Modules”文件夹中。

static PyObject *QFSEncode( PyObject *self, PyObject *args )
{
char* buffer;
unsigned char* bufferIn;
int len;
unsigned char* out;
PyObject *pRet ;
if (!PyArg_ParseTuple(args, "s#", &buffer, &len))
return NULL;
out = (unsigned char*)malloc( len*2 );
bufferIn = (unsigned char*)malloc( len + 2000 );
memcpy( bufferIn, buffer, len );
compress_data( (unsigned char*)bufferIn, &len, out);
pRet = Py_BuildValue( "s#", out, len );
free( out );
free( bufferIn );
return pRet;
}

static PyObject *QFSDecode( PyObject *self, PyObject *args )
{
char* buffer;
int len;
unsigned char* out;
PyObject *pRet ;
if (!PyArg_ParseTuple(args, "s#", &buffer, &len))
return NULL;
out = uncompress_data( (unsigned char*)buffer, &len);
pRet = Py_BuildValue( "s#", out, len );
free( out );
return pRet;
}


static PyMethodDef QFSMethods[] =
{
{"decode", QFSDecode, METH_VARARGS, "decode a buffer" },
{"encode", QFSEncode, METH_VARARGS, "encode a buffer" },
{NULL, NULL, 0, NULL} /* Sentinel */
};


PyMODINIT_FUNC initQFS(void)
{
(void) Py_InitModule("QFS", QFSMethods);
}

当我尝试编译它时,我得到了这个返回

C:\Users\John\Desktop\DAT>python setup.py install
running install
running build
running build_ext
building 'QFS' extension
C:\strawberry\c\bin\gcc.exe -mdll -O -Wall -IC:\Anaconda3\include -IC:\Ana
\include -c qfs.c -o build\temp.win-amd64-3.4\Release\qfs.o
qfs.c: In function 'QFSEncode':
qfs.c:259:11: warning: pointer targets in assignment differ in signedness
nter-sign]
qfs.c: In function 'initQFS':
qfs.c:293:5: warning: implicit declaration of function 'Py_InitModule' [-W
it-function-declaration]
qfs.c:294:1: warning: control reaches end of non-void function [-Wreturn-t
qfs.c: In function 'compress_data':
qfs.c:184:32: warning: 'bestoffs' may be used uninitialized in this functi
maybe-uninitialized]
writing build\temp.win-amd64-3.4\Release\QFS.def
C:\strawberry\c\bin\gcc.exe -shared -s build\temp.win-amd64-3.4\Release\qf
ild\temp.win-amd64-3.4\Release\QFS.def -LC:\Anaconda3\libs -LC:\Anaconda3\
d\amd64 -lpython34 -lmsvcr100 -o build\lib.win-amd64-3.4\QFS.pyd
Cannot export PyInit_QFS: symbol not defined
build\temp.win-amd64-3.4\Release\qfs.o:qfs.c:(.text+0x98b): undefined refe
to `Py_InitModule'
collect2.exe: error: ld returned 1 exit status
error: command 'C:\\strawberry\\c\\bin\\gcc.exe' failed with exit status 1

这是第 259 行

bufferIn = (unsigned char*)malloc( len + 2000 );

我尝试摆弄指针,但我对此没有信心。我确实设法让第一个错误消失,但我很确定这样做破坏了代码功能。但我仍然收到第二个错误。

我对 Python 并不陌生,但这是我第一次尝试更高级别的 Python 编程。我不懂任何 C 语言,如果不是太复杂的话,我只能勉强遵循一些代码。

最佳答案

Py_InitModule() 在 Python 3 中不存在,它或多或少被 PyModule_Create() 取代。请参阅Porting Extension Modules to Python 3 .

关于python - 为 Python 模块编译 C 代码时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26168842/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com