[Mono-list] Debugging

2007-03-13 Thread Simon Greener
Hi all, I'm just getting in to using Mono. Something immediately obvious is MonoDevelop doesn't support the present debugger. So is there a command line C# debugger like GDB? I think I read that it is possible to use GDB with some helper functions to decode the managed code stack frame etc. Th

[Mono-list] Debugging Tips

2003-10-06 Thread Steve Mentzer
This may be a really stupid question, but how do you enable the 'debug' build of mono? I want to track down the dreaded 'bus error' that appears to be plaguing OS/X installations since 0.23. I am a real newbie with unix make files and gcc. Is there an equivalent in the unix world to a .map files,

[Mono-list] Debugging Mint

2003-10-19 Thread Christopher Taylor
I'm in the process of trying to debug mint on OS X. had a couple questions i'll cite as i step through this-a-here-gdb-output (all my questions start with >>>): (gdb) r Starting program: /gentoo/bin/mint /gentoo/bin/mcs.exe Verdict.cs ** (/gentoo/bin/mcs.exe:4889): WARNING **: The handle daemon

Re: [Mono-list] Debugging

2007-03-13 Thread Matt Raffel
You didn't say what OS you're using. If you are using windows, the .NET runtime install includes commandline and GUI debuggers. Matt Simon Greener wrote: > Hi all, > > I'm just getting in to using Mono. Something immediately obvious is > MonoDevelop doesn't support the present debugger. S

Re: [Mono-list] Debugging

2007-03-13 Thread Simon Greener
Sorry, forgot to mention that I am aiming to use Linux. Is there a command line debugger on Linux (other than GDB and the helper functions) ? Thanks, Simon -Original Message- Hi all, I'm just getting in to using Mono. Something immediately obvious is MonoDevelop doesn't support the

Re: [Mono-list] Debugging

2007-03-13 Thread Abe Gillespie
Have never tried it myself as I prefer Matt's suggested method, but take a look at this: http://www.mono-project.com/Debugging BTW - C# Express and SharpDevelop both have debugging capabilities and are free (in case money is the issue). -Abe On 3/13/07, Simon Greener <[EMAIL PROTECTED]> wrote:

Re: [Mono-list] Debugging

2007-03-13 Thread Miguel de Icaza
Hello, > I'm just getting in to using Mono. Something immediately obvious is > MonoDevelop doesn't support the present debugger. So is there a > command line C# debugger like GDB? I think I read that it is possible > to use GDB with some helper functions to decode the managed code stack > fram

[Mono-list] Debugging mono

2008-02-22 Thread Dan Smithers
Can anyone suggest how I can use a debugger with mono? I have looked at http://www.mono-project.com/Debugging and have followed the instructions with GDB. My first problem is that step does not work. I get the response "(gdb) s Cannot find bounds of current function" I have a simple test programm

Re: [Mono-list] Debugging

2010-12-18 Thread che-hai
Same problem here - I have a suse entreprise desktop 11 sp 1, i all the packages containing mono "word". but not a chance to have breakpoints or watches on both C# and C++. I'm stocked into this for more than one week now - Does anyone have a step by step guide for debugging in Mono for linux? I'

[Mono-list] Debugging problem

2013-03-18 Thread Elmar Haneke
I have an win32-application using an c# callback invoked from native code. Running the programm normally seems to work. Running with debugger makes the program crash as soon as an breakpoint in the callback is reached. What can be done to preven this? Has anyone success in debugging such code? E

Re: [Mono-list] Debugging Tips

2003-10-06 Thread Jonathan Pryor
Replies inline... On Mon, 2003-10-06 at 19:39, Steve Mentzer wrote: > This may be a really stupid question, but how do you enable the 'debug' > build of mono? I want to track down the dreaded 'bus error' that appears to > be plaguing OS/X installations since 0.23. The MCS-generated binaries (*.dl

Re: [Mono-list] Debugging Mint

2003-10-19 Thread Miguel de Icaza
Hello, > I'm in the process of trying to debug mint on OS X. had a couple > questions i'll cite as i step through this-a-here-gdb-output (all my > questions start with >>>): To make your life simpler for now, use MONO_DISABLE_SHM=1 which will remove the first couple of errors (those are just re

[Mono-list] Debugging mono apps

2004-03-07 Thread David Mitchell
I'm having difficulty debugging an ASP.Net application. I'm running on Xsp on Mono 0.30.2. How should I go about debugging this? I've tried using mdb but I can't set break points using this. I've also tried using gdb but I am unsure of how to get gdb to break on my code. How do others debug the

[Mono-list] debugging with mod_mono

2005-02-15 Thread Hubert FONGARNAND
Is it possible to view Console.WriteLine message when using mod_mono with apache. (I don't see anything in logs)? I use xsp when I want to debug my projects... -- Hubert FONGARNAND Fiducial IT ___ Ce message et les éventuels documents joints peuvent con

[Mono-list] Debugging with mdb

2006-05-15 Thread Nikki Locke
I don't seem to be able to get any sense out of mdb. I try the following... [EMAIL PROTECTED] test]$ mcs -debug -codepage:1252 -optimize- -delaysign- -target:winexe -out:Old.exe -r:"System.dll" -r:"System.Data.dll" -r:"Mono.Data.SqliteClient.dll" Test.cs [EMAIL PROTECTED] test]$ mdb Old.exe Mono

[Mono-list] debugging asp.net pages

2007-09-25 Thread Daniel Soto
Hi all. I have another question xD. With the mono debugger, can I to debug asp.net pages? Or only it can to debug exe, winexe and library projects? If it can to debug asp.net, how to i must do to debug the pages? Best regards. ___ Mono-list maillist

[Mono-list] Debugging compiler error

2008-04-27 Thread Mike Cleaver
I've been having some trouble recently with a compiler exception running gmcs via Nant for my project. [csc] /Users/mikecleaver/Source/crabcat.framework/fastrecord/ lists/sqllist.cs(140,33): warning CS0219: The variable `records' is assigned but its value is never used [csc]

Re: [Mono-list] Debugging mono apps

2004-03-07 Thread Miguel de Icaza
Hello, > I'm having difficulty debugging an ASP.Net application. I'm running on > Xsp on Mono 0.30.2. How should I go about debugging this? I've tried > using mdb but I can't set break points using this. I've also tried using > gdb but I am unsure of how to get gdb to break on my code. > > How

RE: [Mono-list] Debugging mono apps

2004-03-07 Thread Nick Berardi
:[EMAIL PROTECTED] On Behalf Of Miguel de Icaza Sent: Sunday, March 07, 2004 7:46 PM To: David Mitchell Cc: Mono Subject: Re: [Mono-list] Debugging mono apps Hello, > I'm having difficulty debugging an ASP.Net application. I'm running on > Xsp on Mono 0.30.2. How should I go abou

Re: [Mono-list] debugging with mod_mono

2005-02-15 Thread Gonzalo Paniagua Javier
On Tue, 2005-02-15 at 10:18 +0100, Hubert FONGARNAND wrote: >Is it possible to view Console.WriteLine message when using mod_mono with >apache. (I don't see anything in logs)? >I use xsp when I want to debug my projects... Compile mod_mono using --enable-debug -Gonzalo

Re: [Mono-list] debugging asp.net pages

2007-09-26 Thread Marek Habersack
On Wed, 26 Sep 2007 00:30:51 -0400, Daniel Soto <[EMAIL PROTECTED]> scribbled: > Hi all. Hello, > I have another question xD. > > With the mono debugger, can I to debug asp.net pages? Or only it can to > debug exe, winexe and library projects? At the moment it's not possible to debug asp.net pa

Re: [Mono-list] debugging asp.net pages

2007-09-30 Thread Marcos Torres
Marek: Can you give us some advice about how to debug with XSP? We're trying to figure it out some odd behavior in a ported ASP.NET application, and if we're are able to debug it, everything would be easier. Thanks a lot in advance Marcos On 9/26/07, Marek Habersack <[EMAIL PROTECTED]> wrote: >

Re: [Mono-list] debugging asp.net pages

2007-09-30 Thread John M. Aanderson
On 9/30/07, Marcos Torres <[EMAIL PROTECTED]> wrote: > > Marek: > > Can you give us some advice about how to debug with XSP? We're trying > to figure it out some odd behavior in a ported ASP.NET application, > and if we're are able to debug it, everything would be easier. > > Thanks a lot in advanc

Re: [Mono-list] debugging asp.net pages

2007-09-30 Thread Marek Habersack
On Sun, 30 Sep 2007 20:37:40 -0600, "John M. Aanderson" <[EMAIL PROTECTED]> scribbled: > On 9/30/07, Marcos Torres <[EMAIL PROTECTED]> wrote: > > > > Marek: > > > > Can you give us some advice about how to debug with XSP? We're trying > > to figure it out some odd behavior in a ported ASP.NET appl

Re: [Mono-list] Debugging compiler error

2008-04-27 Thread Mike Cleaver
Well as usual writing up my problem got me to think about it in a different way. The stack trace I posted actually told me exactly what I needed to know and I managed to fix it within a couple of minutes. I had removed the default constructor from a property attribute. Sorry! On 28/04/2

Re: [Mono-list] Debugging compiler error

2008-04-28 Thread Jb Evain
Hey Mike, On 4/28/08, Mike Cleaver <[EMAIL PROTECTED]> wrote: > Sorry! Don't be, you've found a bug in the compiler, that should definitely not crash this way. Could you please write a small test case that reproduces the crash, and attach it to a bug in bugzilla? http://www.mono-project.com/Bu

[Mono-list] debugging an asp.net application.

2009-03-31 Thread Daniel Soto
Hello. I'm trying the new Monodevelop 2.0 and works very well. I only have a doubt: How to debug an asp.net application in monodevelop? When I runs an asp.net app, the execution does not stop at the breakpoint placed in a line of an aspx.cs codebehind. I set the project options to Debug, not Rele

[Mono-list] Debugging mono with VS2010

2012-08-10 Thread Francois Schelling
Hi, I've did a small setup to try mono and now I have a C++ program embedding and C# assembly. I'm under Windows and using VS2010. So far, I'm able to launch my main app from VS, load my assembly, unload it, recompile it with another VS instance, and then reload the assembly on my main progra

[Mono-list] Debugging binding Obj-C?

2015-03-12 Thread Michael McGlothlin
I'm having problems binding a precompiled third party framework. I keep getting a dyld error about being unable to find the library but it only shows the error after I've done the binding, added the library to a project, compiled the project and deployed it to the device, watched it crash, and l

[Mono-list] Debugging ASP.NET applications under mono

2007-09-14 Thread Marcos Torres
Hi list. We need to debug a ported ASP.NET application under mono runtime. I list the different approaches we took: -Use MonoDevelop under linux Suse (the suse image DL from mono site) using XSP or apache. Since MonoDevelop doesn't have a debugger, we were unable to debug. -SharpDevelop under win

Re: [Mono-list] debugging an asp.net application.

2009-03-31 Thread Mike Christensen
I had checked into this a while ago too and the disappointing answer is "This isn't supported yet." It's a limitation in the Mono debugger. When the mono debugger supports debugging web apps, MonoDevelop will support this as well.. Mike Daniel Soto wrote: > Hello. > > I'm trying the new Mono

Re: [Mono-list] Debugging mono with VS2010

2012-08-10 Thread Jonathan Chambers
Francois, You cannot debug managed code running in mono from within VS. You could use MonoDevelop and the mono soft debugger to debug the managed code at the same time that you are debugging the native code in VS. If using MonoDe

Re: [Mono-list] Debugging binding Obj-C?

2015-03-11 Thread Robert Jordan
On 11.03.2015 15:46, Michael McGlothlin wrote: I'm having problems binding a precompiled third party framework. I keep getting a dyld error about being unable to find the library but it only shows the error after I've done the binding, added the library to a project, compiled the project and d

[Mono-list] Debugging Mono applications under GDB

2015-10-19 Thread Chris Swiedler
We have a server application that's being developed under Visual Studio and run under Mono 3.12. We're generating .mdb files from the .pdbs that VS creates. With those deployed next to the executable, mono will give full callstacks with source and line information when logging exceptions, so I b

[Mono-list] Debugging mono dll loaded by Unity3d

2010-07-16 Thread and192
Hi there, I have a problem trying to understand how to debug a library I'm writing in MonoDevelop. This library is being referenced from a Unity3d project. I have been pointing the MonoDevelop debugger at the built Unity3d exe and hoping to be able to 'attach' along the lines of the MSVisual stu

[Mono-list] Debugging into a single Mono assembly

2011-03-04 Thread oly
Hello, I am currently hunting a bug in my application, concerning i18n. As the bug is only triggered when running on Mono under XP (same application works without problems using .NET or under Mono on Linux), I would like to step-debug into the according mono assembly (System.Resources in this cas

[Mono-list] Debugging C# code with Embedded Mono?

2012-02-29 Thread efontana
I'm using Embedded Mono (works great), my question now is, can I somehow use MonoDevelop to attach to the native executable and then open open C# source lines and set breakpoints/single step, etc. I realize that I can use basic GDB stuff like here: http://www.mono-project.com/Debugging#Debugging_w

[Mono-list] Debugging with mono runtime on windows platform

2004-09-17 Thread MonoMan MonoMan
Hi All I am working with mono runtime.i know about mono debugger provided by mono team but it is specific for Linux platform i want to debug C#/VB applications with mono runtime on windows platform. does any debugger exist for mono runtime on windows platform? if any one knows plz let me know. Tha

[Mono-list] Debugging Mono Apps developed on Windows/VStudio

2008-08-16 Thread Danny Waite
Hi All, I prefer to develop apps on Visual Studio, build them and then SFTP to my Linux box to test. It gets quite tedious when in the final stages of testing because you are making small tweaks and have to keep transferring them across. I just wondered what other people were doing in this s

Re: [Mono-list] Debugging mono dll loaded by Unity3d

2010-07-17 Thread Steve Lessard
Instead of attaching to the exe that references your dll have MonoDevelop launch the exe for you. The trick to getting MonoDevelop to launch the exe for you is to create an empty project with the same name as your exe (minus the .exe extension) and add it to the same solution as your dll project

Re: [Mono-list] Debugging mono dll loaded by Unity3d

2010-07-17 Thread Michael Hutchinson
On Fri, Jul 16, 2010 at 12:04 PM, and192 wrote: > > Hi there, > > I have a problem trying to understand how to debug a library I'm writing in > MonoDevelop. This library is being referenced from a Unity3d project. > > I have been pointing the MonoDevelop debugger at the built Unity3d exe and > hop

Re: [Mono-list] Debugging mono dll loaded by Unity3d

2010-07-19 Thread and192
Thank you both for your replies. I did try the approach Steve advised and I can see how it would work if the Unity 3d executable supported loading in debug mode. I will therefore wait until I can get hold of a copy of Unity 3 as Michael recommended. Thanks again, Andy -- View this message in co

Re: [Mono-list] Debugging into a single Mono assembly

2011-03-04 Thread Federico Delgado
Don´t know about the prescribed solution. 2.10.1 at least on linux includes the mdb files and just by placing the sources in the same place they were at build time (even if you didn´t build them) worked for me. Also I had to uncheck an option in Monodevelop that limited debugging only to my appli

Re: [Mono-list] Debugging into a single Mono assembly

2011-03-07 Thread Oliver Nittka
Am 04.03.2011 14:27, schrieb Federico Delgado: > 2.10.1 at least on linux includes the mdb files and just by placing > the sources in the same place they were at build time (even if you > didn´t build them) worked for me. Great, this absolutely worked! I discovered that the assemblies were OK,

Re: [Mono-list] Debugging C# code with Embedded Mono?

2012-03-01 Thread Michael Hutchinson
On 29 February 2012 11:38, efontana wrote: > I'm using Embedded Mono (works great), my question now is, can I somehow use > MonoDevelop to attach > to the native executable and then open open C# source lines and set > breakpoints/single step, etc. > > I realize that I can use basic GDB stuff like

Re: [Mono-list] Debugging C# code with Embedded Mono?

2012-03-02 Thread salorob
Something in the same direction is a question about Embedded Mono on a Debian platform Is it possible to debug a c# console application also? I had managed to compile mono server on my embedded unit (had to shift with available space a little) and run mono server too, but it faulted probably becau

Re: [Mono-list] Debugging C# code with Embedded Mono?

2012-03-03 Thread efontana
Well, I managed to get MD to connect to my App, I see the assemblies loaded in the Application Output window of MD. How do I tell MD which source files go with the Assemblies? I opened the source .cs file and set breakpoints, but they don't get hit. There is no main project or solution, the main

Re: [Mono-list] Debugging C# code with Embedded Mono?

2012-03-03 Thread Bob Davies
Is there c++ support in mono? I think you are stuck there. Try using c# or vb. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Debugging C# code with Embedded Mono?

2012-03-06 Thread efontana
Woo Hoo! I got this to work on Linux. Still doesn't work on Windows though. http://mono.1490590.n4.nabble.com/file/n4450142/DFIZK.png -- View this message in context: http://mono.1490590.n4.nabble.com/Debugging-C-code-with-Embedded-Mono-tp4432086p4450142.html Sent from the Mono - General mail

[Mono-list] Debugging managed code launched via embedded API

2014-08-28 Thread Jonathan Mitchell
I execute my managed code from a C app via the embedded API. Is it possible to attach the debugger to the running process in such a way that I can step through the managed code? Thanks Jonathan ___ Mono-list maillist - Mono-list@lists.xi

[Mono-list] Debugging on embedded Mono in Visual Studio

2016-04-11 Thread mwibowo
Hi, Experts, Has anyone successfully debug on embedded Mono in Visual Studio? I have successfully do this with MonoDevelop by following this http://www.giorgosdimtsas.net/debugging-on-embedded-mono/ but no luck so far finding a workable solution on Visual Studio. Our application is C++ with mana

Re: [Mono-list] Debugging Mono Apps developed on Windows/VStudio

2008-08-16 Thread Petit Eric
2008/8/16 Danny Waite <[EMAIL PROTECTED]>: > Hi All, > > I prefer to develop apps on Visual Studio, build them and then SFTP to my > Linux box to test. It gets quite tedious when in the final stages of > testing because you are making small tweaks and have to keep transferring > them across. > > I

Re: [Mono-list] Debugging Mono Apps developed on Windows/VStudio

2008-08-18 Thread Jonathan Pobst
There are some things in the works to help with this scenario, however they are not production ready yet. SoC: - Automatically copy VS output to Linux and launch. - http://groups.google.com/group/mono-soc-2008 VS Remote Debugging - Same as above, with support for remote debugging in VS. - http:/

Re: [Mono-list] Debugging Mono Apps developed on Windows/VStudio

2008-08-18 Thread Danny Waite
Excellent, thanks Jonathan/Petit, I'll give this a try and post back findings. > Date: Mon, 18 Aug 2008 11:36:12 -0500> From: [EMAIL PROTECTED]> To: [EMAIL > PROTECTED]> CC: mono-list@lists.ximian.com> Subject: Re: [Mono-list] > Debugging Mono Apps developed on Windows

Re: [Mono-list] Debugging managed code launched via embedded API

2014-08-29 Thread Jonathan Mitchell
On 28 Aug 2014, at 17:40, Bob Summerwill wrote: > You should just be able to do Run | Attach to Process ..., and your host > application should show up. > > Your scenario is exactly the same as Unity3D, used by millions of developers > every day (except with a non-Frankensteined Mono runtime

Re: [Mono-list] Debugging managed code launched via embedded API

2014-08-29 Thread Bob Summerwill
This is on a Mac host, I assume, based on your Obj-C usage? I'm running Xamarin Studio 5.2.1 right now and my MacBook Air and do have that option. As for 64-bit, I'm not sure. Somebody else will need to answer that. Cheers, Bob Summerwill Kitsilano Software On Fri, Aug 29, 2014 at 3:00 AM,

Re: [Mono-list] Debugging managed code launched via embedded API

2014-08-29 Thread Jonathan Mitchell
On 29 Aug 2014, at 11:48, Bob Summerwill wrote: > > This is on a Mac host, I assume, based on your Obj-C usage? Correct. > > I'm running Xamarin Studio 5.2.1 right now and my MacBook Air and do have > that option. As for 64-bit, I'm not sure. Somebody else will need to > answer that. >