From c09a2320ed6184f2ad0f0c59cdd6884c76c9e038 Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee Date: Tue, 8 Dec 2015 14:26:54 -0800 Subject: Enable ILASM for Windows 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. --- src/ilasm/main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ilasm/main.cpp') diff --git a/src/ilasm/main.cpp b/src/ilasm/main.cpp index 2bb06612a6..978f827188 100644 --- a/src/ilasm/main.cpp +++ b/src/ilasm/main.cpp @@ -722,6 +722,7 @@ extern "C" int _cdecl wmain(int argc, __in WCHAR **argv) exitval = 1; pParser->msg("Failed to write output file, error code=0x%08X\n",hr); } +#ifndef FEATURE_CORECLR else if (pAsm->m_pManifest->m_sStrongName.m_fFullSign) { // Strong name sign the resultant assembly. @@ -732,6 +733,7 @@ extern "C" int _cdecl wmain(int argc, __in WCHAR **argv) pParser->msg("Failed to strong name sign output file, error code=0x%08X\n",hr); } } +#endif if(bClock) cw.cEnd = GetTickCount(); #define ENC_ENABLED #ifdef ENC_ENABLED -- cgit v1.2.3