2
我想編譯一個包含一些C文件的Python程序。我應該在哪裏將C源文件放入Python程序中?
在一個文件emodule.c
記載:
#include "Python.h"
#include "ul/ul.h"
我已經有ul
文件夾,並把它放在同一個文件夾emodule.c
,但是,當我運行python setup.py build
,它劇照說:
fatal error: ul/ul.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
我應該在哪裏放置ul
文件夾?