wine: depend on shared libraries
authorAndré Hentschel <nerv@dawncrow.de>
Thu, 15 Mar 2018 19:45:54 +0000 (20:45 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sat, 31 Mar 2018 20:40:09 +0000 (22:40 +0200)
Even if --enable-static --disable-shared is passed, wine tries to
build a shared library, causing a build failure in a BR2_STATIC_LIBS=y
configuration:

/home/test/buildroot/output/host/i686-buildroot-linux-uclibc/sysroot/usr/lib/libc.a(__uClibc_main.os): In function `__uClibc_fini':
__uClibc_main.c:(.text.__uClibc_fini+0x10): undefined reference to `__fini_array_start'
/home/test/buildroot/output/host/lib/gcc/i686-buildroot-linux-uclibc/6.4.0/../../../../i686-buildroot-linux-uclibc/bin/ld: /home/test/buildroot/output/host/i686-buildroot-linux-uclibc/sysroot/usr/lib/libc.a(__uClibc_main.os): relocation R_386_GOTOFF again
st undefined hidden symbol `__fini_array_start' can not be used when making a shared object
/home/test/buildroot/output/host/lib/gcc/i686-buildroot-linux-uclibc/6.4.0/../../../../i686-buildroot-linux-uclibc/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
make[2]: *** [libwine.so.1.0] Error 1
make[2]: Leaving directory `/home/test/buildroot/output/build/wine-3.0/libs/wine'
make[1]: *** [libs/wine] Error 2

Since using wine in a static linking environment is fairly unlikely,
we simply mark the wine package unavailable on static-only
configurations.

Since we need to add a Config.in comment, we also introduced a
BR2_PACKAGE_WINE_ARCH_SUPPORTS hidden boolean, to share the
architecture dependencies definition between the wine config option
and the comment.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
[Thomas:
 - add a comment in the Config.in file about the dependency
 - add BR2_PACKAGE_WINE_ARCH_SUPPORTS
 - extend the commit log]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/wine/Config.in

index 627a9a71f4de330b77e1e5a220b3334ae4b0fc1a..9de8cf0f6d828c3b254d530d3ace01bb907f397f 100644 (file)
@@ -1,11 +1,18 @@
-config BR2_PACKAGE_WINE
-       bool "wine"
+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
@@ -15,3 +22,7 @@ config BR2_PACKAGE_WINE
          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