Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Missing MSVCP110D.dll and 0xc000007b Error <SOLVED>  (Read 4606 times)

0 Members and 2 Guests are viewing this topic.

Fnak

  • Newbie
  • *
  • Posts: 22
    • View Profile
Missing MSVCP110D.dll and 0xc000007b Error <SOLVED>
« on: March 30, 2014, 01:22:40 pm »
Hello,

pretty new to programming but thought you might have an idea what I need to do in order to fix this.

So I created a simple little game in SFML, and I decided to send it to a mate so he could try it out.

The first error he gets when trying to open the .exe file is that he's missing  MSVCP110D.dll on his computer.
OK, so he downloads it and he puts it in the file where the .exe is stored.

Trying to start the game again, he comes across a new error (which is quite common I've heard), the 0xc000007b Error.

We've been on google and youtube a lot, trying to solve the problem, but nothing's worked out. Maybe we're putting the MSVCP110D.dll in the wrong folder?

Thanks in advance!
« Last Edit: March 31, 2014, 07:58:17 am by Fnak »

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: Missing MSVCP110D.dll and 0xc000007b Error
« Reply #1 on: March 30, 2014, 01:44:02 pm »
OK, so he downloads it and he puts it in the file where the .exe is stored.
Where did he download it from?

We've been on google and youtube a lot
Youtube is a very bad place to find such information.

Why do you even compile in debug mode? You're not supposed to ship debug DLLs.
Compile in release mode and let him install the MSVC redistributable.
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

Fnak

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: Missing MSVCP110D.dll and 0xc000007b Error
« Reply #2 on: March 30, 2014, 01:46:18 pm »
Right, I didn't even have debug / release in mind.

Oh and he downloaded it from me, there was a MSVCP110D.dll in my Visual Studio folder so I just sent it to him.

I'll try compiling in release and see what happens, thank you.
« Last Edit: March 30, 2014, 01:58:42 pm by Fnak »

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: Missing MSVCP110D.dll and 0xc000007b Error
« Reply #3 on: March 30, 2014, 01:47:46 pm »
Oh and he downloaded it from me
Ah good, I already thought it was one of those "free DLL" malware sites :)

He still needs the release DLLs, but he can install the Microsoft Visual Studio redistributable from MSDN.
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

Fnak

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: Missing MSVCP110D.dll and 0xc000007b Error
« Reply #4 on: March 30, 2014, 10:24:55 pm »
I'm sorry if it's a stupid question, but what do you mean by "He still needs the release DLLs"?

OK, I compile the game in release mode and use the new .exe file it spits out, but where are the mentioned 'release DLLs' exactly?

I recognise a stupid question when there is one, but I don't understand

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: Missing MSVCP110D.dll and 0xc000007b Error
« Reply #5 on: March 30, 2014, 10:30:17 pm »
I meant the VS runtime libraries for release mode.

where are the mentioned 'release DLLs' exactly?
he can install the Microsoft Visual Studio redistributable from MSDN.
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

Fnak

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: Missing MSVCP110D.dll and 0xc000007b Error
« Reply #6 on: March 30, 2014, 11:06:42 pm »
Thanks, it's working now.

Have a good evening!