|
-
February 3rd, 2010, 05:15 AM
#2
Re: #pragma comment (compiler)
As stated in MSDN, #pragma comment(compiler) places the name and version number of the compiler in the object file (.obj). Further, this comment record is ignored by the linker.
So, it cannot be found in the exe/dll file, then it's not possible to retrieve it at run-time.
Alternatively, you can use _MSC_VER predefined macro to get the compiler version. For example, in the compiler from Visual C++ 6.0 _MSC_VER has a value of 1200, while in Visual C++ 2005, _MSC_VER is 1400.
Fore more info see:
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|