MSVCRTD dependancy

BlitzMax Forums/BlitzMax Programming/MSVCRTD dependancy

Nigel Brown(Posted 2007) [#1]
Why are my latest builds depending upon debug dlls even when building without debug? This does not make it helpfull to release final builds!


Knotz(Posted 2007) [#2]
Do you use any external, non BRL, modules?

Msvcrtd.dll is a Visual studio c-runtime dll. Afaik bmax uses the Mingw c runtime, so i would look for the problem in external modules.


Dreamora(Posted 2007) [#3]
Move all modules out of PUB if they are not part of BlitzMax core installation.

Any module within BRL and PUB will automatically be included within your project, which tends to cause problems similar to this one.

Alternatively use Framework Assistant and Frameworks (before delivery of the project not during dev!) and your problems are gone as well


FlameDuck(Posted 2007) [#4]
What the man said: Because you're using something created in Microsoft Visual C.