diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-19 13:22:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-20 15:59:03 +0100 |
commit | 76285e5aff5e0395aa949303d29eb66aa7cdc79b (patch) | |
tree | d100a4add6d8e51fece7cf2ea0444cec91f621f2 /meta | |
parent | 52a11328a32aa64f8b95d9b1841d241b0d3b39fc (diff) | |
download | poky-76285e5aff5e0395aa949303d29eb66aa7cdc79b.tar.gz |
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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index ab4c6a2d9c..3f583668f6 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -307,12 +307,14 @@ BB_MULTI_PROVIDER_ALLOWED = "virtual/libintl virtual/libintl-native virtual/nati | |||
307 | 307 | ||
308 | SOLIBS = ".so.*" | 308 | SOLIBS = ".so.*" |
309 | SOLIBS:darwin = ".dylib" | 309 | SOLIBS:darwin = ".dylib" |
310 | SOLIBS:mingw32 = ".dll" | ||
310 | 311 | ||
311 | SOLIBSDEV = ".so" | 312 | SOLIBSDEV = ".so" |
312 | # Due to the ordering of PACKAGES and the naming of the dev symlinks on darwin, | 313 | # Due to the ordering of PACKAGES and the naming of the dev symlinks on darwin, |
313 | # we can't make the symlinks end up in the -dev packages easily at this point. This hack | 314 | # we can't make the symlinks end up in the -dev packages easily at this point. This hack |
314 | # at least means builds aren't completely broken and symlinks don't take up much space. | 315 | # at least means builds aren't completely broken and symlinks don't take up much space. |
315 | SOLIBSDEV:darwin = ".dylibbroken" | 316 | SOLIBSDEV:darwin = ".dylibbroken" |
317 | SOLIBSDEV:mingw32 = ".dll" | ||
316 | 318 | ||
317 | PACKAGE_DEBUG_SPLIT_STYLE ?= "debug-with-srcpkg" | 319 | PACKAGE_DEBUG_SPLIT_STYLE ?= "debug-with-srcpkg" |
318 | 320 | ||