bitbake.conf: Add mingw32 SOLIBS and SOLIBSDEV definitions

We may as well define the dll output for mingw alongside the darwin dylib
definitions. There are some recipes which output .so files even on mingw
but those can be handled specifically in mingw.

(From OE-Core rev: bb3101fffceacfa4c021c33affb7c785da8d859f)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2024-09-19 13:22:48 +01:00
parent 52a11328a3
commit 76285e5aff

View File

@@ -307,12 +307,14 @@ BB_MULTI_PROVIDER_ALLOWED = "virtual/libintl virtual/libintl-native virtual/nati
SOLIBS = ".so.*"
SOLIBS:darwin = ".dylib"
SOLIBS:mingw32 = ".dll"
SOLIBSDEV = ".so"
# Due to the ordering of PACKAGES and the naming of the dev symlinks on darwin,
# we can't make the symlinks end up in the -dev packages easily at this point. This hack
# at least means builds aren't completely broken and symlinks don't take up much space.
SOLIBSDEV:darwin = ".dylibbroken"
SOLIBSDEV:mingw32 = ".dll"
PACKAGE_DEBUG_SPLIT_STYLE ?= "debug-with-srcpkg"