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.
谁能告诉我我做错了什么?
答案 0 :(得分:0)
SRCDIR = $(CURDIR)/..
BLDDIR = $(SRCDIR)
XMLRPC_C_CONFIG = $(BLDDIR)/xmlrpc-c-config.test
all: xmlrpc_sample_add_server
xmlrpc_sample_add_server : xmlrpc_sample_add_server.o
gcc -Wall -g -o xmlrpc_sample_add_server xmlrpc_sample_add_server.o $(shell $(XMLRPC_C_CONFIG) abyss-server --libs)
xmlrpc_sample_add_server.o : xmlrpc_sample_add_server.c
gcc -Wall -g -c -I. $(shell $(XMLRPC_C_CONFIG) client abyss-server --cflags) xmlrpc_sample_add_server.c
clean:
rm -rf *.o xmlrpc_smaple_add_server
找到答案......
由于某种原因,人们必须首先制作对象,然后根据对象进行编译...