Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread Quandary
Hi, Did you run ./configure ? ./configure make make install And why are you using the trunk to compile mono 2.8 ? Mono 2.10 is release-stable by now. See: http://ubuntuforums.org/showthread.php?t=1591370 Kind regards Stefan On 04/17/2011 04:42 AM, nmccready wrote: nmccready$ make make:

Re: [Mono-dev] compile mono on windows

2011-04-17 Thread Quandary
Hi, From my experience, MinGW is usually faster. But it probably depends on the version of gcc they both use. However, speed is not the main issue. The main difference is, MinGW links against the native Windows libc runtime (crtdll.dll), while Cygwin links against the Cygwin libc (cygwin1.dll).

Re: [Mono-dev] gtksourceview: compilation error and strange runtime behaviour/errors

2011-04-17 Thread Quandary
Addendum: Seems to be a problem in PrintSample.cs SourcePrintJob spj = new SourcePrintJob(null); This should be: SourcePrintJob spj = new SourcePrintJob(IntPtr.Zero); Then there is a call to: Gnome.PrintJob pj = spj.Print (); but Gnome.PrintJob doesn't exist in gnome-sharp. Looks like

Re: [Mono-dev] compile mono on windows

2011-04-17 Thread Robert Jordan
On 17.04.2011 09:11, Quandary wrote: Hi, From my experience, MinGW is usually faster. But it probably depends on the version of gcc they both use. However, speed is not the main issue. The main difference is, MinGW links against the native Windows libc runtime (crtdll.dll), while Cygwin

Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread nmccready
I am having the same problems on compiling too. nems-MacBook-Pro:mono-20110416 nmccready$ ./configure checking build system type... i386-apple-darwin10.7.0 checking host system type... i386-apple-darwin10.7.0 checking target system type... i386-apple-darwin10.7.0 checking for a BSD-compatible

Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread Geoff Norton
As per your output this isn't a mono issue, but a toolchain issue: checking for C compiler default output file name... configure: error: in `/Users/nmccready/Desktop/mono-20110416': configure: error: C compiler cannot create executables See `config.log' for more details. Have you checked the

Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread Zoltan Varga
Hi, You probably need to install g++ too in addition to gcc. Zoltan On Sun, Apr 17, 2011 at 6:39 PM, Geoff Norton gnor...@novell.com wrote: As per your output this isn't a mono issue, but a toolchain issue: checking for C compiler default output file name... configure:

Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread Geoff Norton
Zoltan, This comes by default with Xcode, something is very broken with his setup. -g On 2011-04-17, at 12:51 PM, Zoltan Varga wrote: Hi, You probably need to install g++ too in addition to gcc. Zoltan On Sun, Apr 17, 2011 at 6:39 PM, Geoff Norton

Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread nmccready
Roger that, I am reinstalling XCODE . Also I am building the latest Mono maybe we should move this to a new thread. -- View this message in context: http://mono.1490590.n4.nabble.com/Mono-2-8-trunk-compiling-on-Mac-OS-X-10-6-SL-tp2133834p3455913.html Sent from the Mono - Dev mailing list archive

[Mono-dev] [PATCHES] MIPS backend fixes, #3

2011-04-17 Thread Damien Diederen
Hi, I have uploaded a third series of patches targeting Mono's MIPS32 backend to GitHub: https://github.com/mono/mono/pull/86 Announcements about the first and second series, which have already been integrated into the master branch, are archived at:

[Mono-dev] Application throws exception when run from command-line, but not when run from MonoDevelop...

2011-04-17 Thread Quandary
Hi, I'm working on getting the ICSharpCode.TextEditor running on Linux for highlighting SQL. Basically, the main stuff is from here: http://www.codeproject.com/Articles/111969/Extending-ICSharpCode-TextEditor-Syntax-Highlighti.asp I downloaded ICSharpCode.TextEditor sources and fixed the system

Re: [Mono-dev] Mono 2.8 (trunk) compiling on Mac OS X 10.6 (SL)

2011-04-17 Thread nmccready
Ok reinstalled XCODE, I got a little farther but it is still messed up. Configured with this, ./configure --prefix=/Volumes/Dev/Mono/bin/ --with-glib=embedded --enable-nls=no --host=x86_64-apple-darwin10 during make it looks like this below on errors e CCmono-linked-list-set.lo -e CC

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