Mono / Cygwin issue?

I am trying to remove the dependencies of my .net application using mono and cygwin .

For more information, see here .

I installed all the packages, gcc , gcc-core , as .

Then I went to my vb.net application with a cygwin terminal. I tried to combine all the dependencies with this command:

 mkbundle -o Mono/MsgBox.exe MsgBox.exe --deps -z 

The application itself is a simple module that displays a MessageBox. When I press enter in the Cygwin console now to merge the dependencies of the .net framework, it starts to merge ...

enter image description here

and then he gives me this error:

enter image description here

I have already done some research and found out that this has something to do with the new MinGW compiler, and you can somehow change the settings.

The MsgBox application works fine, I only want to combine the dependencies, as described in the lesson above.

Can someone please explain to me how I can fix this compilation error?

+7
gcc c # mono cygwin
source share
1 answer

Make sure you download 64-bit cygwin and your application is 32 bit. I ran into this error and downloaded cygwin 32 now everything is working fine. Please let me know if this was helpful :)

+1
source share

All Articles