由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Quant版 - 弱问mark joshi那本c++的code如何运行?
相关主题
那位大侠能推荐一个简单易用的 C++ Software/Compiler吗?[合集] how to accelerate Monte-Carlo on matlab execution
虚心请教一道编程题[合集] matlab的GUI能做成一个软件么?
[合集] C++ 里面 long 怎么 进行 bitwise AND有人VB调用MATLAB函数么?
有个公司要让我做coding test[合集] 高手看看这个C++题目吧
明天要做c++的paper test,他们一般会怎么测试啊?two brainteasers
合集 Questions Summaryindustry用quantlib吗?
Really Stupid Question: How to run VC++ 2008 ExpressC++ and threading interview questions
问quant们, 如何在vc种运用数值计算包, 如gsl。 ·请教做C/C++ online test
相关话题的讨论汇总
话题: main话题: compile话题: gnu话题: cpp话题: 程序
进入Quant版参与讨论
1 (共1页)
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
9
en
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).
1 (共1页)
进入Quant版参与讨论
相关主题
请教做C/C++ online test明天要做c++的paper test,他们一般会怎么测试啊?
DLL 文件能被改写吗?合集 Questions Summary
出个题Really Stupid Question: How to run VC++ 2008 Express
急问offer选择 (转载)问quant们, 如何在vc种运用数值计算包, 如gsl。 ·
那位大侠能推荐一个简单易用的 C++ Software/Compiler吗?[合集] how to accelerate Monte-Carlo on matlab execution
虚心请教一道编程题[合集] matlab的GUI能做成一个软件么?
[合集] C++ 里面 long 怎么 进行 bitwise AND有人VB调用MATLAB函数么?
有个公司要让我做coding test[合集] 高手看看这个C++题目吧
相关话题的讨论汇总
话题: main话题: compile话题: gnu话题: cpp话题: 程序