敝人最近正在做一个vxworks下的webserver!以前重来没有接触过webserver方面的东西!昨天在网上溜达了一天!在vxworks 下就两种:1、利用自带组件(敝人没有找到网上介绍的network protocols-> network applications下选择http server即可>)2、利用Goahead webserver移植(这是用的最多的一种方式虽然存在BUG,但作为初学者很有学习价值);
从网上下载到了Goahead webserver2.18版本的,
按:
(1) 建立基于bsp 的downloadable 工程, 名称为 goaheadweb 。
(2) 将下列下载的源文件加入到工程中:
balloc.c
base64.c
default.c
ejlex.c
ejparse.c
emfdb.c
form.c
h.c
handler.c
md5c.c
mime.c
misc.c
page.c
ringq.c
rom.c
security.c
sock.c
sockGen.c
sym.c
uemf.c
um.c
umui.c
url.c
value.c
webrom.c
webs.c
asp.c
websuemf.c
cgi.c
/vxworks/main.c
在编译的时候出现了错误!才知道这个源文件中少了几个文件分别是:
dependency generation failed: In file included from
emf\emfInternal.h: No such file or directory
ej\ejIntrn.h: No such file or directory
basic\basic.h: No such file or directory
emf\emf.h: No such file or directory
basic\basicInternal.h: No such file or directory
请问该怎么解决呢?