tags:

views:

24

answers:

1

In VC++ .Net, The What does the Clr/Safe and Clr/Pure means?

+1  A: 

From the doc:

/clr:pure Produces a Microsoft Intermediate Language (MSIL)-only output file that has no native executable code. However, it can contain native types compiled to MSIL.

/clr:safe Produces an MSIL-only (no native executable code), verifiable output file. /clr:safe enables verification diagnostics (PEVerify Tool (Peverify.exe)).

Darin Dimitrov