Cython 链接到自定义 C 代码

发布于 2024-11-15 12:43:38 字数 642 浏览 6 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筑梦 2024-11-22 12:43:38

终于在这里找到了解决方案:
http://trac.sagemath.org/sage_trac/ticket/1994

显然有一些否则未记录的指令。

使用与上面相同的 .c 和 .h 文件,我使用了以下 .spyx 文件:

#clang c  
#cfile hello.c  
#cinclude /home/sage/sage  
cdef extern from "/home/sage/sage/hello.h":  
  void chello()  
def pyhello():
  chello()

请注意链接与上面的代码之间的差异:我没有在 # 之后包含空格,并且没有在cinclude 行中的路径。这是使用 Sage 为 Cython 编写的 hello world 程序的一个很好的示例。

我将所有三个文件(.c、.h 和 .spyx)放在 /home/sage/sage 目录中。然后我运行 sage 并启动该程序,

load cpy.spyx

没有其他步骤。

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:

#clang c  
#cfile hello.c  
#cinclude /home/sage/sage  
cdef extern from "/home/sage/sage/hello.h":  
  void chello()  
def pyhello():
  chello()

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

load cpy.spyx

No other steps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文