hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
config BR2_PACKAGE_WINE_ARCH_SUPPORTS
   bool
   default y
   # Wine only builds on certain architectures
   depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
              BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \
              BR2_HOSTARCH = "aarch64"
   # Wine has much CPU specific code and mostly makes sense on x86
   depends on BR2_i386
 
config BR2_PACKAGE_WINE
   bool "wine"
   depends on BR2_PACKAGE_WINE_ARCH_SUPPORTS
   # Wine unconditionally builds shared libraries
   depends on !BR2_STATIC_LIBS
   help
     Wine is a compatibility layer capable of running Windows
     applications on Linux. Instead of simulating internal
     Windows logic like a virtual machine or emulator, Wine
     translates Windows API calls into POSIX calls on-the-fly,
     eliminating the performance and memory penalties of other
     methods.
 
     http://www.winehq.org
 
comment "wine needs a toolchain w/ dynamic library"
   depends on BR2_PACKAGE_WINE_ARCH_SUPPORTS
   depends on BR2_STATIC_LIBS