mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
klibc: Recognise --dyld-prefix clang option
This is added when usrmerge is enabled in distro
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 6a52b84dbc)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
@@ -5,7 +5,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|||||||
|
|
||||||
--- a/klcc/klcc.in
|
--- a/klcc/klcc.in
|
||||||
+++ b/klcc/klcc.in
|
+++ b/klcc/klcc.in
|
||||||
@@ -207,6 +207,27 @@ while ( defined($a = shift(@ARGV)) ) {
|
@@ -207,6 +207,30 @@ while ( defined($a = shift(@ARGV)) ) {
|
||||||
} elsif ( $a =~ /^--([sysroot=])(.*)$/ ) {
|
} elsif ( $a =~ /^--([sysroot=])(.*)$/ ) {
|
||||||
# Override gcc encoded sysroot
|
# Override gcc encoded sysroot
|
||||||
push(@ccopt, $a);
|
push(@ccopt, $a);
|
||||||
@@ -29,6 +29,9 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|||||||
+ push(@ccopt, $a);
|
+ push(@ccopt, $a);
|
||||||
+ } elsif ( $a =~ '-rtlib=.*' ) {
|
+ } elsif ( $a =~ '-rtlib=.*' ) {
|
||||||
+ # Allow clang options
|
+ # Allow clang options
|
||||||
|
+ push(@ccopt, $a);
|
||||||
|
+ } elsif ( $a =~ '--dyld-prefix=.*' ) {
|
||||||
|
+ # Allow clang options
|
||||||
+ push(@ccopt, $a);
|
+ push(@ccopt, $a);
|
||||||
} else {
|
} else {
|
||||||
die "$0: unknown option: $a\n";
|
die "$0: unknown option: $a\n";
|
||||||
|
|||||||
Reference in New Issue
Block a user