[Mono-dev] Trouble compiling Mono on Cygwin

2011-04-02 Thread vinculum
Hi,

I'm having trouble compiling Mono on Cygwin. The following links to
dependencies are broken:

* http://www.gimp.org/~tml/gimp/win32/pkgconfig-0.15.zip
* http://www.gimp.org/~tml/gimp/win32/libiconv-1.9.1.bin.woe32.zip
* http://www.gimp.org/~tml/gimp/win32/gettext-0.14.5.zip
* http://www.gimp.org/~tml/gimp/win32/gettext-dev-0.14.5.zip
*
http://anonsvn.mono-project.com/viewvc/trunk/release/packaging/do-install-zip-pkgs?view=co

The list is collected from here:
http://www.mono-project.com/Compiling_Mono_on_Windows

I've found newer versions of the packages but I can't find
do-install-zip-pkgs anywhere, since anosvn.mono-project.com redirects me
directly to git hub.

I can't do a Visual Studio build because I'm building androidmono
(https://github.com/koush/androidmono).

-
Timo Heinäpurola 
Raccoon Interactive 

http://www.raccoon-interactive.com 
@raccoon_int 
--
View this message in context: 
http://mono.1490590.n4.nabble.com/Trouble-compiling-Mono-on-Cygwin-tp3421942p3421942.html
Sent from the Mono - Dev mailing list archive at Nabble.com.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Using the generic type `System.FuncT1, T2, T3, T4, T5, T6, T7, T8, T9, TResult' requires `10' type argument(s)

2011-04-02 Thread Alexander M. Batishchev
Hi.

I have a console app which builds and runs under Windows fine.

But when I'm trying to build it under Mono, I'm getting next errors:

 

godfather@debian: $ xbuild MyProject.sln

 

Indicator/ADXReader.cs(71,42): error CS0305: Using the generic type
`System.FuncT1,T2,T3,T4,T5,T6,T7,T8,T9,TResult' requires `10' type
argument(s)

 
/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll
(Location of the symbol related to previous error)

Indicator/ADXReader.cs(75,46): error CS0305: Using the generic type
`System.FuncT1,T2,T3,T4,T5,T6,T7,T8,T9,TResult' requires `10' type
argument(s)

 
/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll
(Location of the symbol related to previous error)

 

while in code I have just such lines:

 

71: private readonly Funcdouble, double, bool predicate;

75: public OperationInfo(Funcdouble, double, bool predicate, Op operation)

 

I was unable to reproduce that in stand-alone test app though ..(

 

godfather@debian: $ mcs --version

Mono C# compiler version 2.11.0.0

 

godfather@debian $ mono --version

Mono JIT compiler version 2.11 (master/7420834 Sat Mar 26 12:56:34 MSK 2011)

Copyright (C) 2002-2011 Novell, Inc and Contributors. www.mono-project.com

TLS:   __thread

SIGSEGV:   altstack

Notifications: epoll

Architecture:  x86

Disabled:  none

Misc:  softdebug

LLVM:  supported, not enabled.

GC:Included Boehm (with typed GC and Parallel Mark)

 

What can I do?

TIA

Alex

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Using the generic type `System.FuncT1, T2, T3, T4, T5, T6, T7, T8, T9, TResult' requires `10' type argument(s)

2011-04-02 Thread Marek Safar

Hello,

Please fill a bug report and provide full xbuild output.

Thanks
Marek


I have a console app which builds and runs under Windows fine.

But when I'm trying to build it under Mono, I'm getting next errors:

godfather@debian: $ xbuild MyProject.sln

Indicator/ADXReader.cs(71,42): error CS0305: Using the generic type 
`System.FuncT1,T2,T3,T4,T5,T6,T7,T8,T9,TResult' requires `10' type 
argument(s)



/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll (Location 
of the symbol related to previous error)


Indicator/ADXReader.cs(75,46): error CS0305: Using the generic type 
`System.FuncT1,T2,T3,T4,T5,T6,T7,T8,T9,TResult' requires `10' type 
argument(s)



/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll (Location 
of the symbol related to previous error)


while in code I have just such lines:

71: privatereadonly Funcdouble, double, bool predicate;

75: publicOperationInfo(Funcdouble, double, bool predicate, Op 
operation)


I was unable to reproduce that in stand-alone test app though ..(

godfather@debian: $ mcs --version

Mono C# compiler version 2.11.0.0

godfather@debian $ mono --version

Mono JIT compiler version 2.11 (master/7420834 Sat Mar 26 12:56:34 MSK 
2011)


Copyright (C) 2002-2011 Novell, Inc and Contributors. www.mono-project.com

TLS:   __thread

SIGSEGV:   altstack

Notifications: epoll

Architecture:  x86

Disabled:  none

Misc:  softdebug

LLVM:  supported, not enabled.

GC:Included Boehm (with typed GC and Parallel Mark)

What can I do?

TIA

Alex


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Using the generic type `System.FuncT1, T2, T3, T4, T5, T6, T7, T8, T9, TResult' requires `10' type argument(s)

2011-04-02 Thread Alexander M. Batishchev
That's done now.

https://bugzilla.novell.com/show_bug.cgi?id=684737

Thanks, Marek.

 

From: mono-devel-list-boun...@lists.ximian.com
[mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Marek Safar
Sent: Saturday, April 02, 2011 3:39 PM
To: mono-devel-list@lists.ximian.com
Subject: Re: [Mono-dev] Using the generic type `System.FuncT1, T2, T3, T4,
T5, T6, T7, T8, T9, TResult' requires `10' type argument(s)

 

Hello,

Please fill a bug report and provide full xbuild output.

Thanks
Marek



I have a console app which builds and runs under Windows fine.

But when I'm trying to build it under Mono, I'm getting next errors:

 

godfather@debian: $ xbuild MyProject.sln

 

Indicator/ADXReader.cs(71,42): error CS0305: Using the generic type
`System.FuncT1,T2,T3,T4,T5,T6,T7,T8,T9,TResult' requires `10' type
argument(s)

 
/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll
(Location of the symbol related to previous error)

Indicator/ADXReader.cs(75,46): error CS0305: Using the generic type
`System.FuncT1,T2,T3,T4,T5,T6,T7,T8,T9,TResult' requires `10' type
argument(s)

 
/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll
(Location of the symbol related to previous error)

 

while in code I have just such lines:

 

71: private readonly Funcdouble, double, bool predicate;

75: public OperationInfo(Funcdouble, double, bool predicate, Op operation)

 

I was unable to reproduce that in stand-alone test app though ..(

 

godfather@debian: $ mcs --version

Mono C# compiler version 2.11.0.0

 

godfather@debian $ mono --version

Mono JIT compiler version 2.11 (master/7420834 Sat Mar 26 12:56:34 MSK 2011)

Copyright (C) 2002-2011 Novell, Inc and Contributors. www.mono-project.com

TLS:   __thread

SIGSEGV:   altstack

Notifications: epoll

Architecture:  x86

Disabled:  none

Misc:  softdebug

LLVM:  supported, not enabled.

GC:Included Boehm (with typed GC and Parallel Mark)

 

What can I do?

TIA

Alex

 
 
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Trouble compiling Mono on Cygwin

2011-04-02 Thread Zoltan Varga
Hi,

  You might want to try mono/scripts/get-cygwin-deps.sh instead of
downloading the dependencies manually.

   Zoltan

On Sat, Apr 2, 2011 at 12:37 PM, vinculum t...@raccoon-interactive.comwrote:

 Hi,

 I'm having trouble compiling Mono on Cygwin. The following links to
 dependencies are broken:

 * http://www.gimp.org/~tml/gimp/win32/pkgconfig-0.15.zip
 * http://www.gimp.org/~tml/gimp/win32/libiconv-1.9.1.bin.woe32.zip
 * http://www.gimp.org/~tml/gimp/win32/gettext-0.14.5.zip
 * http://www.gimp.org/~tml/gimp/win32/gettext-dev-0.14.5.zip
 *

 http://anonsvn.mono-project.com/viewvc/trunk/release/packaging/do-install-zip-pkgs?view=co

 The list is collected from here:
 http://www.mono-project.com/Compiling_Mono_on_Windows

 I've found newer versions of the packages but I can't find
 do-install-zip-pkgs anywhere, since anosvn.mono-project.com redirects me
 directly to git hub.

 I can't do a Visual Studio build because I'm building androidmono
 (https://github.com/koush/androidmono).

 -
 Timo Heinäpurola
 Raccoon Interactive

 http://www.raccoon-interactive.com
 @raccoon_int
 --
 View this message in context:
 http://mono.1490590.n4.nabble.com/Trouble-compiling-Mono-on-Cygwin-tp3421942p3421942.html
 Sent from the Mono - Dev mailing list archive at Nabble.com.
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] [PATCH] more support for Google Native Client

2011-04-02 Thread C.Rivlaldo
Hello!

Firstly I must say big thanks to Elijah again. I had successfully run a part
of our C# code with Mono on NaCl.

But occasionally I'm finding some bugs with global variables in Mono, which
value is equal 0x. For example:
* assemly_search_hook in assembly.c,
* global_codeman in mini.c.

I think NaCl corrupts the values ​​of variables during the initialization or
during running application.

May be somebody had this problem before?

--
View this message in context: 
http://mono.1490590.n4.nabble.com/PATCH-more-support-for-Google-Native-Client-tp3159583p3422375.html
Sent from the Mono - Dev mailing list archive at Nabble.com.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list