c# cywgwin mono mkbundle windows 7 - cannot compile file

此生再无相见时 提交于 2019-11-27 17:00:32

问题


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


回答1:


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)



回答2:


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



来源:https://stackoverflow.com/questions/1906843/c-sharp-cywgwin-mono-mkbundle-windows-7-cannot-compile-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!