首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

sqlite 如何不支持cgi

2012-08-08 
sqlite 怎么不支持cgi?我写了一个cgi程序,程序如下:C/C++ code#include stdio.h#include sqlite3.hint

sqlite 怎么不支持cgi?
我写了一个cgi程序,程序如下:

C/C++ code
#include <stdio.h>#include <sqlite3.h>int main(void){        printf("Content-type: text/html\n\n");        printf("<html> ");        printf("<head><title>CGI Output</title></head> ");        printf("<body> ");        printf("<h1>Hello,world.</h1> ");        printf("<body> ");        printf("</html> ");        exit(0);}

写了一个makefile文件
hello.cgi:helloworld.c
arm-linux-gcc helloworld.c -o hello.cgi -L/home/share/sqlite/lib -I/home/share/sqlite/include
能通过而且能显示。
hello.cgi:helloworld.c
arm-linux-gcc helloworld.c -o hello.cgi -lsqlite3 -L/home/share/sqlite/lib -I/home/share/sqlite/include
能通过,但cgi认为不合1.1规范,所以不能显示(两者相差一个-lsqlite3 ),但是我知道要真正支持sqlite的话,-lsqlite3 这个参数是必需,请做过cgi的朋友提点意见看,


[解决办法]
是不是权限问题?

热点排行