《嗨翻 c 语言》书中的 p418 页,运行 newshound.c 报错:"python 应用程序正常初始化(0xc0150004)失败"。
环境 winxp + tdm-gcc-4.9.2.exe + python-2.7.9.msi
c 程序代码:
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
int main(int argc, char* argv[]) {
char* feeds[] = { "
http://feed.xbeta.info/"
, "
http://feed.appinn.com/"
, "
http://fullrss.net/a/http/feed.iplaysoft.com/"
};
int feedsLen = sizeof(feeds)/sizeof(*feeds);
printf("feedsLen=%d\n", feedsLen);
char* phrase = argv[1]; //搜索关键字
for (int i = 0; i < feedsLen; i++) { //遍历 RSS 源
char var[255];
sprintf(var, "RSS_FEED=%s", feeds[i]);
char* vars[] = {var, NULL}; //环境变量数组
if (execlpe("python", "python",
"./
rssgossip.py", phrase, NULL,
vars/*将这里的 vars 改为 NUll ,运行不报错,就是
rssgossip.py 拿不到 RSS_FEED 环境变量*/) == -1) {
fprintf(stderr, "Can't run script: %s\n", strerror(errno));
return 1;
}
}
puts("should not see this message");
return 0;
}
rssgossip.py 程序代码:
import sys
import os
print sys.argv
print os.environ['path']
print os.environ('RSS_FEED')
#print os.getenv('RSS_FEED')
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/253730
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.