1

I am installing dbg debugger on ubuntu. After I launch the dbg debugger with wine command. I met this problem:

Unhandled exception: unimplemented function msvcr120.dll.?_Id@_CurrentScheduler@details@Concurrency@@SAIXZ called in 64-bit code (0x000000007b44f037).

I checked the directory, msvcr120.dll is there. However, I don't know why it cannot be implemented. I tried both 32 bit and 64 bit version of dbg. They both have the similar problems.

Any answer and comment is appreciated. Thanks!

drescherjm
  • 10,365
  • 5
  • 44
  • 64
Peng Cheng
  • 11
  • 2
  • 5
  • 1
    Your best bet is to update wine to the latest release. This is currently wine-2.17. – drescherjm Sep 22 '17 at 16:24
  • ***However, I don't know why it cannot be implemented.*** wine has not implement 100% of the windows API. There is some missing functionality. – drescherjm Sep 22 '17 at 16:25

1 Answers1

5

Try the following:

  • Launch winecfg
  • Go to 'Libraries'
  • In the 'New override for library' field search msvcr120 and press Add
GrobIvanovich
  • 51
  • 1
  • 3