mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 23:05:34 +01: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>
This commit is contained in:
parent
1f56482ecf
commit
6a52b84dbc
|
|
@ -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";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user