Y
yuanlinjiang
I am working on converting a win32 console application from VC6 to VC7.
My version is Microsoft Development Environment 2003 version 7.1.3088.
The code works fine on VC6. it is a console program for scientific
computation, so it has nothing to do with MFC. But it needs some
other libraries such as MKL, sparselib, etc.
VC7 can build the executable successfully. However, when i run it,
there is only one line on the command window:
"runtime error Press any key to continue"
No other complain/information about it. This happens for both debug
and release versions.
----
I solved two problems before being stuck by this runtime error.
1. cl : Command line error D2004 : '/I' requires an argument
solve: manu -> project -> property pages -> C/C++ -> command lines
-> remove /I
2. Command line error D2016 : '/RTC1' and 'O2' command-line options
are incompatible.
solve: changing the AppName.vcproj file by replacing all BasicRuntime-
Checks="3" with BasicRuntimeChecks="0"
I left one warning unsolved:
LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:
ICF' specification
I know I provided very limited information about the runtime error. But
that's
all i got. Any guide to solve this error is indeed appreiated !
Happy New Year!
Yuanlin
My version is Microsoft Development Environment 2003 version 7.1.3088.
The code works fine on VC6. it is a console program for scientific
computation, so it has nothing to do with MFC. But it needs some
other libraries such as MKL, sparselib, etc.
VC7 can build the executable successfully. However, when i run it,
there is only one line on the command window:
"runtime error Press any key to continue"
No other complain/information about it. This happens for both debug
and release versions.
----
I solved two problems before being stuck by this runtime error.
1. cl : Command line error D2004 : '/I' requires an argument
solve: manu -> project -> property pages -> C/C++ -> command lines
-> remove /I
2. Command line error D2016 : '/RTC1' and 'O2' command-line options
are incompatible.
solve: changing the AppName.vcproj file by replacing all BasicRuntime-
Checks="3" with BasicRuntimeChecks="0"
I left one warning unsolved:
LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:
ICF' specification
I know I provided very limited information about the runtime error. But
that's
all i got. Any guide to solve this error is indeed appreiated !
Happy New Year!
Yuanlin