• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Debug mode bugs.

Joined
11/14/15
Messages
50
Points
18
This problem has been bothering me for a long time. When the project runs fine in the release mode, it gives the following error in the debug mode:
1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
Why? And what does the front "1>" means?
Besides, I have learnt a few MatLab and in it we can debug line after line to find out the exact error and view or set the value of the formal parameters which we cannot have access to otherwise. Is there a conterpart in C++? I think the build in C++ means compile and the debug ctrl-F5 means run after comlipe, and I don't know how to debug line after line. Does C++ have such a feature?
Thank you~
 
Back
Top