C++/CLI so slow in win2k

  • Thread starter Thread starter zade
  • Start date Start date
Z

zade

I move a C++/CLI project from my windows2003 server to win2k under
MSVC2005, but when I debug it, it becomes so slow than windows2003
server.

So why?

Thanks!
 
zade said:
I move a C++/CLI project from my windows2003 server to win2k under
MSVC2005, but when I debug it, it becomes so slow than windows2003
server.

So why?
When you debug, make sure you set the "Debugger Type" to the correct configuration, either managed or unmanaged. If you leave it as
"auto", it might pick mixed mode, which is extremely slow. I'm guessing this is at the heart of the matter, and that it has nothing
to do with the operating system per se.

Brian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top