LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
楼主: basten54188

gcc问题!

[复制链接]
发表于 2003-5-18 03:13:26 | 显示全部楼层
我没用过QTDESIGNER,不过你的代码好像有问题,怎么没有QApplication呢?怪不得没有main函数。
 楼主| 发表于 2003-5-18 12:21:55 | 显示全部楼层
楼上的兄台:
Makefile是要自己敲进去么??
怎么改写目标呢!?
发表于 2003-5-18 14:07:38 | 显示全部楼层
我看了你的另一个帖子,大概改了一下:
INCL=-I$(QTDIR)/include -I$(KDEDIR)/include
CFLAGS=-pipe -O2 -fno-strength-reduce
LFLAGS=-L$(QTDIR)/lib -L$(KDEDIR)/lib -L/usr/X11R6/lib
LIBS=-lqt -lX11 -lXext
CC=g++

main: main.o form1.o
\t$(CC) $(LFLAGS) -o main main.o form1.o $(LIBS)

main.o: main.cpp form1.h
form1.o: form1.cpp form1.h

clean:
\trm -f main
\trm -f main.o
\trm -f form1.o

.SUFFIXES: .cc

.cc.o:
\t$(CC) -c $(CFLAGS) $(INCL) -o $@ $<
将以上内容存为开发目录下的Makefile文件就行了。
 楼主| 发表于 2003-5-18 14:42:22 | 显示全部楼层
我照着你说的做了!可是MAKE之后报错!
In file included from main.cpp:1:
form1.h:4:22: qvariant.h: No such file or directory
form1.h:5:21: qwidget.h: No such file or directory
In file included from main.cpp:1:
form1.h:12: parse error before `{' token
form1.h:21: destructors must be member functions
form1.h:27: parse error before `}' token
main.cpp:2:26: qapplication.h: No such file or directory
main.cpp:3:18: qapp.h: No such file or directory
main.cpp: In function `int main(int, char**)':
main.cpp:7: `QApplication' undeclared (first use this function)
main.cpp:7: (Each undeclared identifier is reported only once for each function
   it appears in.)
main.cpp:7: parse error before `(' token
main.cpp:8: `form1' undeclared (first use this function)
main.cpp:8: parse error before `(' token
main.cpp:10: `a' undeclared (first use this function)
make: *** [main.o] Error 1
发表于 2003-5-18 15:07:04 | 显示全部楼层
楼上问题应该是include路径没有设对
 楼主| 发表于 2003-5-18 15:07:22 | 显示全部楼层
怎么办啊??还有两个星期要交货了!我还没怎么动!
大家帮帮忙啊!
 楼主| 发表于 2003-5-18 15:09:01 | 显示全部楼层
不会把!我是照抄libinary老兄的啊!
他写的那个是对的把!?
发表于 2003-5-18 15:10:33 | 显示全部楼层
qvariant.h: No such file or directory
form1.h:5:21: qwidget.h: No such file or directory

这两个.h在哪里
使用 _I指明它的路径
 楼主| 发表于 2003-5-18 15:51:26 | 显示全部楼层
我把libinary老兄写的那个的第一行换成
INCL=-I/usr/lib/qt/include -I$(KDEDIR)/include
还是报一样的错误!
/usr/lib/qt 是我的QT的路径!
 楼主| 发表于 2003-5-18 16:07:01 | 显示全部楼层
无双兄,怎么办啊?
老是在编译时候报那样的错,实在是指明了路径啊!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表