编译参数

Release

/nologo /ML  /W3 /GX          /O2 "NDEBUG" /D  /Fp"Release/Eap.pch" /YX /Fo"Release/" /Fd"Release/"  /FD /c

Release(PDB)

/nologo /ML  /W3 /GX      /Zi  /O2 "NDEBUG" /D  /Fp"Release/Eap.pch" /YX /Fo"Release/" /Fd"Release/"  /FD /c

Debug

/nologo /MLd /W3 /Gm  /GX /ZI  /Od "_DEBUG" /D  /Fp"Debug/Eap.pch"  /YX /Fo"Debug/"  /Fd"Debug/"   /FD /GZ /c

 

连接参数

Release

/nologo /dll /incremental:no  /pdb:"Release/Eap.pdb"             /out:"Release/Eap.dll" /implib:"Release/Eap.lib"

Release(PDB)

/nologo /dll /incremental:no  /pdb:"Release/Eap.pdb" /debug   /out:"Release/Eap.dll"  /implib:"Release/Eap.lib"

Debug

/nologo /dll /incremental:yes  /pdb:"Debug/Eap.pdb" /debug   /out:"Debug/Eap.dll"   /implib:"Debug/Eap.lib"  /pdbtype:sept

 

 

相关文章:

  • 2021-10-01
  • 2021-10-01
  • 2021-11-27
  • 2021-10-17
  • 2022-12-23
  • 2021-09-23
  • 2021-12-12
  • 2021-06-05
猜你喜欢
  • 2022-12-23
  • 2022-02-11
  • 2022-02-14
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案