linux下XMLRPC服务器编译问题
CC -Wall -g `xmlrpc-c-config client abyss-server --cflags` `xmlrpc-c-config client abyss-server --libs` xmlrpc_sample_add_server.c -o xmlrpc_sample_add_server
上面是我用来编译 xmlrpc_sample_add_server.c 的命令行命令,但我收到此错误,
xmlrpc_sample_add_server.c:11: fatal error: xmlrpc-c/server_abyss.h: No such file or directory
compilation terminated.
任何人都可以告诉我我做错了什么吗?
CC -Wall -g `xmlrpc-c-config client abyss-server --cflags` `xmlrpc-c-config client abyss-server --libs` xmlrpc_sample_add_server.c -o xmlrpc_sample_add_server
above is command line command I used to compile xmlrpc_sample_add_server.c but I get this error,
xmlrpc_sample_add_server.c:11: fatal error: xmlrpc-c/server_abyss.h: No such file or directory
compilation terminated.
Can anybody tell me what I'm doing wrong??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案...
出于某种原因,必须先创建对象,然后基于该对象进行编译...
Found the answer...
for some reason one would have to make the object first then compile based on the object...