locked
nutcargs.rsp error ILT005 RRS feed

  • Question

  • Dear all,

    I'am building a windows universal application for windows 10, I finished it one week ago but there is no way to build it with Release mode on publish it from store directly from visual studio.

    I have the following error when trying to:

    'Error ILT0005: 'C:\Program Files (x86)\MSBuild\Microsoft\.NetNative\x64\ilc\Tools\nutc_driver.exe @"...\obj\x64\Release\ilc\intermediate\nutcargs.rsp"' a retourné le code de sortie -1073741819

    I'am working with Windows 10 Enterprise and visual studio 2015 pro.

    Hoping someone could help me.

    Best regards


    Wednesday, August 12, 2015 8:34 PM

Answers

All replies

  • Same problem for me, this error makes me crazy. I don't understand the problem and in debug mode (without .Net Native), it works well.
    We can't publish our app to the store, it's frustrating.

    Even with an empty project, I can't compile it with .Net Native.

    • Edited by Nulos Thursday, August 13, 2015 3:58 PM
    Thursday, August 13, 2015 3:00 PM
  • Still the same problem I spend days working on this application and I can't publish it :(
    Wednesday, August 19, 2015 8:16 AM
  • This has to do with the checkbox for "Compile .Net Native tool chain" on project properties build tab

    Debug by default is unchecked, so it builds fine.

    Release by default is checked so it attempts a compile to native code - and an error occurs at this time.

    The ILT0005 error I got was due to an unresolved method in a third party assembly (in a method which I was not even using in my App!!!, but apparently it checks all the methods in all the assemblies regardless rather than just the referenced ones)

    I ticked the "Enable static analyysis for .net Native"; this seemed to indicate the problem might be the third party assembly not making private method names available to the IL Compiler.

    So as yet I cannot resolve this problem, until the third party sorts itself out, or Microsoft adds a workaround/flag to their NUTC tool which precedes the ILC tool in the native tool chain.

    At this stage, perhaps try publishing by compiling release with native tool chain unchecked.

    Perhaps they can help you here:

    http://blogs.msdn.com/b/dotnet/archive/2014/05/09/the-net-native-tool-chain.aspx?PageIndex=2

    Thursday, August 20, 2015 5:03 AM
  • For me, it's not due a third party library. I can't compile an empty project with .Net Native. For the moment, I didn't find any solution (reinstallation doesn't change anything), so I can't build a Windows 10 application in .Net Native.


    • Edited by Nulos Thursday, August 20, 2015 8:35 PM
    Thursday, August 20, 2015 8:34 PM
  • Problème résolu la résolution sur mon forum :  Erreur nutc_driver
    • Marked as answer by Larry_angama Friday, August 21, 2015 3:54 PM
    Friday, August 21, 2015 3:53 PM
  • This works for me!

    Saturday, October 10, 2015 3:23 PM