Question

I'm trying to follow the following post to build a c# app with mono embedded, using cygwin.

I am following the guide here: How to convert a simple .Net console project a into portable exe with Mono and mkbundle?

The error I am receiving is:

"gcc: the -mno-cygwin flag has been removed; use a mingw-targeted cross-compiler."

I'm unsure how to fix this - can anyone advise?

I'm using: Windows 7 x64, Mono 2.4.3, cygwin 7.1 beta (for Windows 7 support).

Thanks,

Frank

Was it helpful?

Solution

Have you tried updating to Mono 2.6.1? I successfully got a Windows Form application working using mkbundle on Win7 x64 using the following steps:

  1. Download Mono 2.6.1
  2. Downloaded cgywin 1.7.1
  3. Installed packages gcc-mingw, mingw-zlib and pkg-config for cgywin
  4. Started cgywin and edited .bashrc e.g. C:/progra~2/notepad++/notepad++ $HOME/.bashrc
  5. Added $HOME/.bashrc export PATH=$PATH:/cygdrive/c/progra~2/Mono-2.6.1/bin
  6. Added $HOME/.bashrc export PKG_CONFIG_PATH=/cygdrive/c/progra~2/Mono-2.6.1/lib/pkgconfig
  7. Quit & restarted cygwin
  8. Changed directory to .Net application
  9. Compile the solution using xbuild
  10. Change directory to bin folder e.g. bin\Debug
  11. mkbundle -o Setup SetupForm.exe --deps -z
  12. Copied native mono dlls to bin\Debug folder (mono.dll, libglib-2.0-0.dll, libgthread-2.0-0.dll, zlib.dll)

OTHER TIPS

I used a VPC running XP, cygwin 1.5 and all AOK

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top