summaryrefslogtreecommitdiff
path: root/src/ilasm/assembler.h
AgeCommit message (Collapse)AuthorFilesLines
2017-02-15Enable delay signing in ilasmMichelle McDaniel1-0/+2
Corefx needs the .Net Core version of ilasm to create delay signable assemblies. This change brings back AllocateStrongNameSignature that was deleted in 2efbb92 and modifies it to use similar logic from Roslyn to determine the size of the signature that we need to allocate space for. Fixes #9292.
2017-02-10Remove always defined FEATURE_CORECLRdanmosemsft1-7/+0
2017-02-08[x86/Linux] Fix Calling Convertion Mismatch inside ilasm/ildasm (#9410)Jonghyun Park1-1/+1
2016-01-27Update license headersdotnet-bot1-4/+3
2015-12-11Enable ILASM for *nixKyungwoo Lee1-0/+1204
This enables ILASM for x-platforms. 1. Added a bunch of warning disable options mostly due to this prebuilt asmparse.cpp 2. Create a separte entry point "main" to pass WCHAR arguments. 3. PDB (CorSymWriter) part is disabled. 4. Converting/embedding resource file to binary is disabled. 5. jkotas kindly provided a code for IsTextUnicode which is unavailable on CoreCLR.