I have vs2013 on win7.
are there any multithreaded DLL's I need to copy with my my multithreaded applications?
[how] can I statically link in VC++? I can't find the switch for it, and grep/find doesn't work on the help output for cl /? because it doesn't go to stdout
are there any runtime DLL's (msvcrt*.dll?) I need to copy with my programs? and what cl.exe switches go with those? do I still need it if I statically link (should static linkage exist)? does the redist package auto-install to the right place?
how effectively does /Qpar work for parallelizing code, and does it give generally safe and stable results for what are normally serial/sequential programs (is there a discussion of this?) when using stdc++ libraries?
how do I turn on c++11/14 compilation in vc++? or is it always on?