a*******1 发帖数: 1554 | 1 在这里可以下载
http://www.markjoshi.com/design/
有include,main,source 三个文件夹,include存header,main存main程序,source存其
他程序,其中main和source里的文件都是.cpp格式。我用visual c++ 2008,请问如何
调试这些程序?以前上课的程序都是有个project可以直接运行的,但现在只有.cpp,
不知道怎么办了......谢谢 |
x********o 发帖数: 519 | 2 never used VC, but with GNU, just compile all the cpp files together.
【在 a*******1 的大作中提到】 : 在这里可以下载 : http://www.markjoshi.com/design/ : 有include,main,source 三个文件夹,include存header,main存main程序,source存其 : 他程序,其中main和source里的文件都是.cpp格式。我用visual c++ 2008,请问如何 : 调试这些程序?以前上课的程序都是有个project可以直接运行的,但现在只有.cpp, : 不知道怎么办了......谢谢
|
D********n 发帖数: 978 | 3 联系你以前学校,让他们退学费给你。理由是他们没教会你东西。
【在 a*******1 的大作中提到】 : 在这里可以下载 : http://www.markjoshi.com/design/ : 有include,main,source 三个文件夹,include存header,main存main程序,source存其 : 他程序,其中main和source里的文件都是.cpp格式。我用visual c++ 2008,请问如何 : 调试这些程序?以前上课的程序都是有个project可以直接运行的,但现在只有.cpp, : 不知道怎么办了......谢谢
|
z****g 发帖数: 1978 | 4 他连include和src这些都不知道,你让他用GNU?
【在 x********o 的大作中提到】 : never used VC, but with GNU, just compile all the cpp files together.
|
x********o 发帖数: 519 | 5 another way,
you might want to switch to GNU's ecllipse IDE,
I think it will do all the work for you automatically, though i am not very
sure.
【在 a*******1 的大作中提到】 : 在这里可以下载 : http://www.markjoshi.com/design/ : 有include,main,source 三个文件夹,include存header,main存main程序,source存其 : 他程序,其中main和source里的文件都是.cpp格式。我用visual c++ 2008,请问如何 : 调试这些程序?以前上课的程序都是有个project可以直接运行的,但现在只有.cpp, : 不知道怎么办了......谢谢
|
k*******d 发帖数: 1340 | 6 到VC里面建立一个空Project,把文件全都添进去,一股脑子编译看看
用gcc还得写make file,麻烦 |
a*******1 发帖数: 1554 | 7 谢谢....可以了...可能问题太弱智了......囧
very
【在 x********o 的大作中提到】 : another way, : you might want to switch to GNU's ecllipse IDE, : I think it will do all the work for you automatically, though i am not very : sure.
|
M*******r 发帖数: 165 | 8 我解决了,用的static lib
【在 a*******1 的大作中提到】 : 在这里可以下载 : http://www.markjoshi.com/design/ : 有include,main,source 三个文件夹,include存header,main存main程序,source存其 : 他程序,其中main和source里的文件都是.cpp格式。我用visual c++ 2008,请问如何 : 调试这些程序?以前上课的程序都是有个project可以直接运行的,但现在只有.cpp, : 不知道怎么办了......谢谢
|
s******u 发帖数: 676 | |
y***s 发帖数: 23 | 10 I happened to test the 1st program a few days ago.
1. First compile the functions needed in the main program:
g++ -c function.cpp (-c: just compile to generate binary file. No linking
here)
2. compile and link the main program
g++ main.cpp function. o
This is the idea(compiling and linking). |