经过几个小时的尝试,我已经决定是时候发布了。
我有一个非常基本的C#Windows窗体应用程序,我可以在Windows上编译并运行它。整个项目设计用于Pi,所以我把项目移到了它并编译。经过几个小时的最终得到它编译(发现我必须引用MySql.Data.dll文件)它编译没有错误!
然后我跑
Mono Administration.exe
我收到了这个巨大的错误,我在网上找不到什么:
pi@raspberrypi /media/WAYNEIO/pi/ProjectNibiru/ProjectNibiru $ mono Administration.exe
Stacktrace:
at System.Drawing.Font.CreateFont (string,single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,byte,bool) <0x00143>
at System.Drawing.Font..ctor (string,single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,byte,bool) <0x0007f>
at System.Drawing.Font..ctor (string,single,string) <0x00057>
at (wrapper remoting-invoke-with-check) System.Drawing.Font..ctor (string,single,string) <0xffffffff>
at System.Drawing.SystemFonts.get_DefaultFont () <0x00073>
at System.Windows.Forms.Theme..ctor () <0x0002f>
at System.Windows.Forms.ThemeWin32Classic..ctor () <0x00013>
at System.Windows.Forms.ThemeVisualStyles..ctor () <0x00013>
at System.Windows.Forms.ThemeEngine..cctor () <0x0007f>
at (wrapper runtime-invoke) object.runtime_invoke_void (object,intptr,intptr,intptr) <0xffffffff>
at System.Windows.Forms.X11DesktopColors..cctor () <0x000bb>
at (wrapper runtime-invoke) object.runtime_invoke_void (object,intptr,intptr,intptr) <0xffffffff>
at System.Windows.Forms.XplatUIX11..ctor () <0x001af>
at System.Windows.Forms.XplatUIX11.GetInstance () <0x00073>
at System.Windows.Forms.XplatUI..cctor () <0x00157>
at (wrapper runtime-invoke) object.runtime_invoke_void (object,intptr,intptr,intptr) <0xffffffff>
at System.Windows.Forms.Application.EnableVisualStyles () <0x00023>
at ProjectNibiru.Program.Main () <0x0000b>
at (wrapper runtime-invoke) object.runtime_invoke_void (object,intptr,intptr,intptr) <0xffffffff>
Native stacktrace:
Debug info from gdb:
Cannot access memory at address 0x0
Cannot access memory at address 0x0
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/arm-linux-gnueabihf/libthread_db.so.1".
[New Thread 0x4093b460 (LWP 2224)]
0x40085f30 in read () from /lib/arm-linux-gnueabihf/libpthread.so.0
Id Target Id Frame
2 Thread 0x4093b460 (LWP 2224) "mono" 0x40084d84 in sem_wait@@GLIBC_2.4 () from /lib/arm-linux-gnueabihf/libpthread.so.0
* 1 Thread 0x400cd000 (LWP 2223) "mono" 0x40085f30 in read () from /lib/arm-linux-gnueabihf/libpthread.so.0
Thread 2 (Thread 0x4093b460 (LWP 2224)):
#0 0x40084d84 in sem_wait@@GLIBC_2.4 () from /lib/arm-linux-gnueabihf/libpthread.so.0
#1 0x00195a40 in mono_sem_wait ()
#2 0x000ea384 in ?? ()
#3 0x000ea384 in ?? ()
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
Thread 1 (Thread 0x400cd000 (LWP 2223)):
#0 0x40085f30 in read () from /lib/arm-linux-gnueabihf/libpthread.so.0
#1 0x40085770 in __pthread_enable_asynccancel () from /lib/arm-linux-gnueabihf/libpthread.so.0
#2 0x00000000 in ?? ()
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
Aborted
有人可以就这可能出现的原因提出建议,以及如何解决问题?
注意事项;无论我使用“Xbuild”还是使用“dmcs”进行编译,或者如果它在Windows中编译并复制过,都会发生这种情况。编译一个基本的hello world脚本也可以正常工作,所以它可能与Windows.Forms或MySql.Data有关。 PI也正在运行Debian。
答案 0 :(得分:2)
在仔细阅读你的问题之后,我可以看到它是特定的段错误说Cannot access memory at address 0x0
,所以它可能会因为错误而访问返回的指针。例如程序要求提供类似的东西让我处理字体X 和函数返回空指针由于某种原因。您可以尝试一些可能的解决方案:
mono-complete
包,如果你还没有; 您也可以查看来源。有趣的部分可能是:
旧回答:
这里没有太多细节,但每当我遇到使用Windows窗体应用程序的段错误时,我的第一个猜测是从不同的UI线程访问某些UI控件。很多时候,相同的应用程序不会在Windows Forms的MS实现上崩溃,但这种方法是不正确的。也许那是你的问题?
错误的其他可能原因列表包括Mono错误(给我们版本号)或第三方本机库中的某种错误(如果使用的话)。对于后一种情况,确实值得使用GDB(之前使用一些调试选项编译这些库,比如g3)。为了不被垃圾收集器发送的信号打扰,请记得发出
handle SIGXCPU SIG33 SIG35 SIGPWR nostop noprint
在GDB会议期间。
答案 1 :(得分:1)
答案是更新到最新版本的mono,并确保它在soft-float debian上运行。通过以下帖子找到答案http://www.raspberrypi.org/phpBB3/viewtopic.php?f=66&t=11634