summaryrefslogtreecommitdiff
path: root/src/ilasm/writer.cpp
AgeCommit message (Collapse)AuthorFilesLines
2018-10-16Remove ExportStubARM64Template supportBruce Forstall1-17/+0
2018-10-15Add ARM64 support to ilasm/ilasmBruce Forstall1-78/+59
Remove IA-64/Itanium support.
2018-06-03Typo (#18266)John Doe1-1/+1
* addres -> address * depedant -> dependent * gaurantee -> guarantee * gaurantees -> guarantees * lable -> label * lazieness -> laziness * lcoation -> location * enquing -> enqueuing * enregsitered -> enregistered * ensurin -> ensuring
2017-02-15Enable delay signing in ilasmMichelle McDaniel1-0/+65
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-230/+0
2016-01-27Update license headersdotnet-bot1-4/+3
2015-12-11Enable ILASM for *nixKyungwoo Lee1-6/+11
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.
2015-12-09Enable ILASM for WindowsKyungwoo Lee1-1/+13
This enables ILASM/mscorpe on CoreCLR for Windows. 1. Fusion/StrongName(Full Sign) dependencies are removed since these are not CoreCLR features. 2. mscorpe is statically built/linked to ilasm. 3. asmparse.c is auto-generated by an internal version of yacc so I added it under prebuilt directory for now. Will create an issue so that we can build it using a standard tool like bison.
2015-12-08Open sourcing ILASMdotnet-bot1-0/+1798
[tfs-changeset: 1555681]