windows - Statically linking libs in Visual Studio -
when choose /mtd
static linking in visual studio, try link each lib statically or there exceptions system libs?
description: /mtd: defines _debug , _mt. option causes compiler place library name libcmtd.lib .obj file linker use libcmtd.lib resolve external symbols.
from can see there no static linking. if want static linking need use ilmerge. , should not attempt merge in required .net framework references reference others may miss. may not possible use gac referencing.
Comments
Post a Comment