]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/mono/Config.in
mono: only available for x86/x86-64 host architectures
[coffee/buildroot.git] / package / mono / Config.in
1 config BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS
2         bool
3         default y if BR2_HOSTARCH = "x86_64"
4         default y if BR2_HOSTARCH = "x86"
5
6 config BR2_PACKAGE_MONO_ARCH_SUPPORTS
7         bool
8         depends on BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS
9         default y if (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \
10                       BR2_mipsel || BR2_powerpc || BR2_x86_64)
11
12 config BR2_PACKAGE_MONO
13         bool "mono"
14         depends on BR2_PACKAGE_MONO_ARCH_SUPPORTS
15         depends on BR2_TOOLCHAIN_HAS_THREADS
16         depends on !BR2_STATIC_LIBS
17         help
18           An open source, cross-platform, implementation of C#
19           and the CLR that is binary compatible with Microsoft.NET.
20
21           http://download.mono-project.com/sources/mono/
22
23 comment "mono needs a toolchain w/ threads, dynamic library"
24         depends on BR2_PACKAGE_MONO_ARCH_SUPPORTS
25         depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS