SFML community forums

Help => General => Topic started by: Poraft on September 12, 2012, 11:55:44 pm

Title: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 12, 2012, 11:55:44 pm
Hello,

I'm using Windows 7 and SFML pre-RC build for Microsoft Visual C++ 2010 and want to test my application on other computers, like school PC's. I can't install anything on those PCs. But how do I manage this.

What I've tried:

-Release SFML staticly on /MT then when I try to compile it starts crying about multiple symbols, so I allowed multiple symbols. Then it builds fine, but when I try to run it gives the error:

Quote
The procedure entry point ??1_NonReentrantPPLLockHolder@details@concurrency@@blaball
cout not be located in the dynamic link library MSVCR100.dll

Or should  just building it on Release, static, /MD. And then include the msvcp100 and msvcr100 work?

Thanks!

Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: eXpl0it3r on September 13, 2012, 12:07:39 am
Build SFML with static runtime libraries and use /MT in your application.
Don't allow multiple symbols, since this will cause problems, only allow the runtime library that is really used by excluding the other ones. ;)
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 12:20:12 am
I know little about the building libraries, but how do I build SFML ontop of my other build? Won't they get ambiguous?
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: eXpl0it3r on September 13, 2012, 12:23:15 am
I know little about the building libraries, but how do I build SFML ontop of my other build? Won't they get ambiguous?
Hu? ???

You compile SFML newly at the location you want with the runtime library static and SFML static and then you match your projects settings to the library settings, i.e. setting /MT and link against the new libraries.

How to build SFML libraries on your own is described in the tutorial, just don't forget to set the wanted settings. ;)

An easier way (I think) would be to link dynamically as usually and just provide the needed runtime .dll next to the application.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 12:43:54 am
Ahh, ok thanks for clearing that up.

I'm going to try to link it dynamically, and provide those DLLs. And from the "as usually" I make up it's better to link dynamically?
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: eXpl0it3r on September 13, 2012, 01:11:23 am
And from the "as usually" I make up it's better to link dynamically?
There are many reasons in favor for dynamic linkage, e.g. if you ever need to update something you can just provide a new .exe which doesn't have the library linked into it, thus the filesize is smaller, or the memory footprint can be smaller, etc.
But there are also the arguments for static linkage like dependencies, etc.
Google will tell you a lot about it.

For the Windows platform, both ways are a possibility where there's no sense on Linux platforms for static linking. ;)
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Atani on September 13, 2012, 01:49:50 am
For the Windows platform, both ways are a possibility where there's no sense on Linux platforms for static linking. ;)

Correction, there are very few reasons to ever use static linking on Linux. Primarily static linking is done by companies producing close source software and releasing it as a static bundle with all dependencies contained within it.  A prime example of this is Rational ClearCase (now owned by IBM). I remember jumping through a lot of hoops to get CC working on a 2.4 kernel because the 2.5 kernels were not yet supported for the MVFS module.

Mike
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 12:23:22 pm
I'm at school right now I've got the same problem with dynamically building it + the necesarry DLL files. But I get the same error as provided with my first post.

What do?
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: eXpl0it3r on September 13, 2012, 12:57:54 pm
If you refer to:
Quote
cout not be located in the dynamic link library MSVCR100.dll
Then you haven't provided the right libraries, but I'm not even sure if that works to 100%...

You can google for MSVCR100.dll, download it and place it next to your exe.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Nexus on September 13, 2012, 02:00:07 pm
You have multiple possibilities:

You can google for MSVCR100.dll, download it and place it next to your exe.
I wouldn't risk malicious binaries, when the DLL is already on my computer (which is the case if Visual Studio 2010 is installed).
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 02:45:53 pm
Well the problem is; I already did put MSVCR100.dll and MSVCP100.dll (the 2 the .exe is asking for) in the same directory, where the .exe is which is on an USB stick.

Even when I run my .exe from my usb on my own PC gives the same error.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Laurent on September 13, 2012, 03:00:56 pm
A quick Google search on the error message shows that there are multiple versions of these DLLs.

Have you tried with your own DLLs (the ones installed in your C:\Windows folder)?
Have you tried with the official "Visual C++ 2010 redistributable package" from Microsoft website?
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 03:29:47 pm

Have you tried with your own DLLs (the ones installed in your C:\Windows folder)?
Have you tried with the official "Visual C++ 2010 redistributable package" from Microsoft website?

Can't find mine in C:/Windows folder. Neither in the folder where visual is installed. No redist folder.
As I stated before, I won't be able to use the package since I want to run it on schoolcomputers.

And at school we have 32bit windows, and at home I have 64bit. I didn't know/can't find more dll versions of them.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Laurent on September 13, 2012, 03:48:42 pm
Quote
Can't find mine in C:/Windows folder.
Use the search function of your OS. They are located in a sub-folder (like system32 or WinSxS).

Quote
As I stated before, I won't be able to use the package since I want to run it on schoolcomputers.
I was suggesting that you install it on your computer and copy the DLLs from there.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 04:07:36 pm
Apparently the searcher can't find them. //E: I found them by hand.
I've got them working on my usb now. Im going to try it tomorrow.

Thanks for all your help guys!
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: N_K on September 13, 2012, 04:56:34 pm
I may be late for this, but when I tested my app on various machines with various windows versions, all I had to do is to put msvcr100.dll and msvcp100.dll (found in the windows\system32 folder) to the same locations as the executable. The app has been compiled with MSVS 2010 Express under win7, and it worked fine on an old machine with an (almost) fresh xp installation.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 13, 2012, 05:36:23 pm
I think I just had downloaded some sort of corrupt .dll file. I've got mine from my installation folder these work fine on my PC. Just have to test them on my school.

Thank you too.
Title: Re: Redistribute static without Microsoft Redistribution Files
Post by: Poraft on September 14, 2012, 09:09:02 am
At school using my .DLLs gives the error:

Quote
The application or DLL on path\MSVCR100.dll is an unvalid Windows-copy

Any help?