Cython 链接到自定义 C 代码
我正在尝试使用 sage 来运行使用自定义 C 库的基本 Cython 程序。
我有三个文件:hello.h、hello.c 和 cpy.spyx。
hello.h:
#include <stdio.h>
void chello();
hello.c:
#include "hello.h"
void chello() {
printf("Hello world\n");
}
cpy.spyx:
#cinclude /home/sage/sage
cdef extern from "/home/sage/sage/hello.h":
void chello()
def pyhello():
chello()
我正在尝试使用(仅)命令在 sage 中运行它:
加载“cpy.spyx”
时出现以下错误:
导入错误 /home/sage/sage//temp/... :未定义符号:chello 这是我第一次尝试 Cython,所以我的代码中可能有一个愚蠢的错误。另一种理论是 .h 文件没有被复制到上面的临时目录。
谢谢
I'm trying to use sage to run a basic Cython program that uses a custom C library.
I have three files: hello.h, hello.c, and cpy.spyx.
hello.h:
#include <stdio.h>
void chello();
hello.c:
#include "hello.h"
void chello() {
printf("Hello world\n");
}
cpy.spyx:
#cinclude /home/sage/sage
cdef extern from "/home/sage/sage/hello.h":
void chello()
def pyhello():
chello()
I'm trying to run this in sage using (only) the command:
load "cpy.spyx"
I get the following error:
Import Error /home/sage/sage//temp/... : undefined symbol: chello
This is my first attempt at Cython, so I may have a stupid mistake in my code. An alternate theory is that the .h file is not being copied to the temp directory above.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于在这里找到了解决方案:
http://trac.sagemath.org/sage_trac/ticket/1994
显然有一些否则未记录的指令。
使用与上面相同的 .c 和 .h 文件,我使用了以下 .spyx 文件:
请注意链接与上面的代码之间的差异:我没有在 # 之后包含空格,并且没有在cinclude 行中的路径。这是使用 Sage 为 Cython 编写的 hello world 程序的一个很好的示例。
我将所有三个文件(.c、.h 和 .spyx)放在 /home/sage/sage 目录中。然后我运行 sage 并启动该程序,
没有其他步骤。
Finally found the solution here:
http://trac.sagemath.org/sage_trac/ticket/1994
There are some apparently otherwise-undocumented directives.
Using the same .c and .h file as above, I used the following .spyx file:
Note the differences between the link and my code above: I didn't include spaces after the #, and I didn't put quotes around the path in the cinclude line. This is a good example of a hello world program for Cython using Sage.
I put all three files (.c, .h, and .spyx) in the /home/sage/sage directory. Then I ran sage and started the program with
No other steps.