- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
21 lines
662 B
Diff
21 lines
662 B
Diff
The code is encoding host compiler parameters into target builds. Avoid
|
|
this for our target builds (patch is target specific, not native)
|
|
|
|
Upstream-Status: Inappropriate [Cross compile hack]
|
|
RP 2020/2/18
|
|
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
Index: perl-5.30.1/cpan/Encode/bin/enc2xs
|
|
===================================================================
|
|
--- perl-5.30.1.orig/cpan/Encode/bin/enc2xs
|
|
+++ perl-5.30.1/cpan/Encode/bin/enc2xs
|
|
@@ -195,7 +195,7 @@ sub compiler_info {
|
|
# above becomes false.
|
|
my $sized = $declaration && !($compat && !$pedantic);
|
|
|
|
- return ($cpp, $static, $sized);
|
|
+ return (0, 1, 1);
|
|
}
|
|
|
|
|