Re: [Mono-dev] Strange Crash with mono-3.2.3 + Qt-5.2.1

2014-02-15 Thread Frank Fuchs
The problem exists for the current master, and seem independent of the garbage collector choosen (incl. boehm/sgen/ext. boehm). -- View this message in context: http://mono.1490590.n4.nabble.com/Strange-Crash-with-mono-3-2-3-Qt-5-2-1-tp4661905p4661910.html Sent from the Mono - Dev mailing list

[Mono-dev] Strange Crash with mono-3.2.3 + Qt-5.2.1

2014-02-14 Thread Frank Fuchs
I first noticed with my Qt based application and a 64 bit build of mono-3.2.3. However, I confirmed the very same problem with the offical binary releases fo Qt-5.2.1 (mingw) and mono-3.2.3. An application which embedds mono and initializes the runtime (which passes without problems) like

[Mono-dev] mono-master: windows fixes

2014-02-03 Thread Frank Fuchs
Hi, I just checked if I can build the runtime of mono-master on Windows 7 (64bit) using mingw-w64-tdm (gcc 4.8.1) + msys. Build works fine using an external boehm and adding the following patches: Now I was not able to really test the patches (due to a lack of a up-to-date corelib), but I

[Mono-dev] Windows.Forms broken on Windows

2014-02-01 Thread Frank Fuchs
The offical mono-package (32 bit for Windows) from mono-project.com seem broken when it comes to Windows.Form apps. I tested the following for mono-3.0.10 and mono-3.2.3, with Windows 7 Professional 64bit. using System; using System.Windows.Forms; class Hello{ static public void Main(){

[Mono-dev] mono 2.11.4 on Windows GetThreadContext failed

2012-11-19 Thread Frank Fuchs
Hi, I'm using mono-2.11.4 on Windows 7 in 32 bit and 64 bit for embedding into my C++ application. Since updating from an rather old 2.6.4 mono I'm getting an error GetThreadContext failed from the GC every now and then (there seems to be no pattern). The same error occurs with mono-3.0.1 both for

Re: [Mono-dev] mono 2.11.4 on Windows GetThreadContext failed

2012-11-19 Thread Frank Fuchs
Dear Robert, the GetLastError() returns 31. I think I use lazy-loading - I just put the libgc-1.dll in the apps folder as well as libmono-2.dll. So what would you suggest instead? Thank you! Best, Frank ___ Mono-devel-list mailing list

Re: [Mono-dev] Mono Project: Next Steps

2011-07-07 Thread Frank Fuchs
.nabble.com/compile-mono-on-windows-tp3443861p3486025.html ). Best, Frank 2011/7/7 Alex xtzgzo...@gmail.com Hi, I would be eternally grateful if someone made that possible; Cygwin is a major pain in the butt to build anything with... Regards, Alex On Thu, Jul 7, 2011 at 7:41 AM, Frank Fuchs

Re: [Mono-dev] Mono Project: Next Steps

2011-07-06 Thread Frank Fuchs
Hello folks, Some of you have been asking about the upcoming release of Mono 2.12. We hit a little bit of a bump in the road with the layoff of the Mono team, but we have now re-constituted the team at Xamarin and we are getting back to speed. Our first priority at Xamarin is to

Re: [Mono-dev] compile mono on windows

2011-04-17 Thread Frank Fuchs
The build takes about 10min on a Corei7 desktop machine using a single make thread (I did not test parallel make). I don't know how this compares to cywin's build time, sorry. My argument against cygwin was the lack of gcc-4.X and the lack of a 64 bit toolchain. I don't know if these are actually

Re: [Mono-dev] compile mono on windows

2011-04-13 Thread Frank Fuchs
On 12.04.2011 08:56, Frank Fuchs wrote: Hi, I think I finally manged to build mono (2.10.1) on windows using mingw-w64 (TDM build) together with the patches from here: https://build.opensuse.org/package/files?package=mingw64-monoproject=windows%3Amingw%3Awin64. I did end up

[Mono-dev] compile mono on windows

2011-04-12 Thread Frank Fuchs
Hi, I think I finally manged to build mono (2.10.1) on windows using mingw-w64 (TDM build) together with the patches from here: https://build.opensuse.org/package/files?package=mingw64-monoproject=windows%3Amingw%3Awin64. I did end up with a libmono-2.0.a and libmono-2.0.dll. What is missing in

[Mono-dev] configure options for building 64bit mono for windows

2011-03-14 Thread Frank Fuchs
Hi, lately I did succeed building a 32 bit mono for windows using cygwin. From what I understand compiling a 64 bit library from cygwin essentially means cross-compiling. Therefore, I set the autogen.sh options host and target to x86_64-w64-mingw32. Configuring like this was successful, but

[Mono-dev] Testing / Building Mono for 64 bit Windows

2011-03-01 Thread Frank Fuchs
Hi, from what I've seen some people seem to work on getting mono ready for 64bit Windows (as a 64 bit library). However, I did not find any kind of (potentially unsupported) test builds. If someone is aware of such a resource I'd like to contribute by testing it. Same thing holds for any

Re: [Mono-dev] reloading mono domain or assemblies

2010-08-13 Thread Frank Fuchs
Well you could take a look at this code (http://monobin.com/__f7469 ), should be familiar to some of you ;) For me it works perfectly under Win7 and MacOS X. -Frank ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] mono_jit_init fails when called from a Qt QThread

2010-08-11 Thread Frank Fuchs
/ScriptEngine.cpp:1153 #5 0x000101d1adaf in QThreadPrivate::start () #6 0x7fff8704d456 in _pthread_start () #7 0x7fff8704d309 in thread_start () Frank Hey, On 10.08.2010 22:00, Frank Fuchs wrote: * Hi, ** I think I have a rather special problem here. I have a Qt C++ application

Re: [Mono-dev] mono_jit_init fails when called from a Qt QThread

2010-08-11 Thread Frank Fuchs
Ok I justed prepared a minimal example demonstrating the problem, just to learn that it runs perfectly ... now I have to find my bug :-/ . Sorry for the buzz! -Frank ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] mono_jit_init fails when called from a Qt QThread

2010-08-10 Thread Frank Fuchs
Hi, I think I have a rather special problem here. I have a Qt C++ application with an embedded mono jit. Everything works nicely so far. However, I recently tried to start the Jit from a Qthread (in order to have an unblocked GUI during the C# script execution, which can be several minutes).

Re: [Mono-dev] CodeDomProvider.CreateProvider fails on Windows

2010-08-02 Thread Frank Fuchs
: Robert Jordan robe...@gmx.net Subject: Re: [Mono-dev] CodeDomProvider.CreateProvider fails on Windows To: mono-devel-list@lists.ximian.com Message-ID: i2sd1u$hs...@dough.gmane.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hey, On 29.07.2010 18:52, Frank Fuchs wrote

Re: [Mono-dev] CodeDomProvider.CreateProvider fails on Windows

2010-08-02 Thread Frank Fuchs
Hi, yes the .bat file works standalone. I don't know how to find out whether or not it is invoked. Frank On 02.08.2010 12:13, Frank Fuchs wrote: No this does not seem to be the cause. Any further suggestions? I will try to assemble a test case. May be it's related

Re: [Mono-dev] CodeDomProvider.CreateProvider fails on Windows

2010-08-02 Thread Frank Fuchs
explicit something like Missing method System.CodeDom.Compiler.CodeDomProvider::CreateProvider . Frank Am 02.08.2010 um 15:44 schrieb Frank Fuchs: Hi, yes the .bat file works standalone. I don't know how to find out whether or not it is invoked. Frank On 02.08.2010 12:13

[Mono-dev] CodeDomProvider.CreateProvider fails on Windows

2010-07-29 Thread Frank Fuchs
Hi, I'd like to compile .cs files at runtime. Following the tip frome here http://lists.ximian.com/pipermail/mono-devel-list/2010-July/035505.html I'm able to do that on my Mac. On Windows (win 7 enterprise) however I do not manage to get it running. The program exits with exit code 01 right when

Re: [Mono-dev] CodeDomProvider.CreateProvider fails on Windows

2010-07-29 Thread Frank Fuchs
:25, Frank Fuchs wrote: Hi, I'd like to compile .cs files at runtime. Following the tip frome here http://lists.ximian.com/pipermail/mono-devel-list/2010-July/035505.html I'm able to do that on my Mac. On Windows (win 7 enterprise) however I do not manage to get it running. The program exits

Re: [Mono-dev] Calling the mcs from an app.

2010-07-25 Thread Frank Fuchs
... why do they act beyond the JIT? -Frank Am 24.07.2010 um 22:53 schrieb Frank Fuchs: Hi, I want to test mono for embedding it into my C++ application. So far everything worked out rather well, but I'd like to have more of a script-like behavior. To be precise I'd like to provide the users

Re: [Mono-dev] Embedding Mono into C++

2010-07-25 Thread Frank Fuchs
Wow I almost missed your answer. It works like a charm! Thank you! On 24.07.2010 15:11, Frank Fuchs wrote: On a related note is there a way to invoke the mcs compiler from within the code to compile some .cs file. Of course one could try to invoke mcs with a system call or ExecuteProcess

[Mono-dev] Embedding Mono into C++

2010-07-24 Thread Frank Fuchs
Hi, I want to test mono for embedding it into my C++ application. I was following the articles http://www.mono-project.com/Scripting_With_Mono, http://www.mono-project.com/Embedding_Mono and the examples here http://anonsvn.mono-project.com/viewvc/trunk/mono/samples/embed/. So far everything

Re: [Mono-dev] Embedding Mono into C++

2010-07-24 Thread Frank Fuchs
Hi Lucas, thank you very much! Implementing your answer mad me stumble over this one https://bugzilla.novell.com/show_bug.cgi?id=624498. Did you find a workaround? Win7 is one of my deployment platforms. On a related note is there a way to invoke the mcs compiler from within the code to

[Mono-dev] Calling the mcs from an app.

2010-07-24 Thread Frank Fuchs
Hi, I want to test mono for embedding it into my C++ application. So far everything worked out rather well, but I'd like to have more of a script-like behavior. To be precise I'd like to provide the users of my application with the ability to write a rather complete .cs file (or even many of