blob: 07703aa536741e7311703326b0662d88b18dac3c [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001meta-clang passes this option to compiler defaults
2
3Upstream-Status: Pending
4Signed-off-by: Khem Raj <raj.khem@gmail.com>
5
6Index: git/klcc/klcc.in
7===================================================================
8--- git.orig/klcc/klcc.in
9+++ git/klcc/klcc.in
10@@ -207,6 +207,9 @@ while ( defined($a = shift(@ARGV)) ) {
11 } elsif ( $a =~ /^--([sysroot=])(.*)$/ ) {
12 # Override gcc encoded sysroot
13 push(@ccopt, $a);
14+ } elsif ( $a eq '-no-integrated-as' ) {
15+ # Allow clang options
16+ push(@ccopt, $a);
17 } else {
18 die "$0: unknown option: $a\n";
19 }