File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -1545,6 +1545,10 @@ impl Build {
1545
1545
}
1546
1546
}
1547
1547
1548
+ if target. contains ( "-kmc-solid-" ) {
1549
+ cmd. args . push ( "-finput-charset=utf-8" . into ( ) ) ;
1550
+ }
1551
+
1548
1552
if self . static_flag . is_none ( ) {
1549
1553
let features = self
1550
1554
. getenv ( "CARGO_CFG_TARGET_FEATURE" )
@@ -1556,7 +1560,7 @@ impl Build {
1556
1560
1557
1561
// armv7 targets get to use armv7 instructions
1558
1562
if ( target. starts_with ( "armv7" ) || target. starts_with ( "thumbv7" ) )
1559
- && target. contains ( "-linux-" )
1563
+ && ( target. contains ( "-linux-" ) || target . contains ( "-kmc-solid-" ) )
1560
1564
{
1561
1565
cmd. args . push ( "-march=armv7-a" . into ( ) ) ;
1562
1566
}
@@ -2082,6 +2086,10 @@ impl Build {
2082
2086
} else {
2083
2087
"wr-cc" . to_string ( )
2084
2088
}
2089
+ } else if target. starts_with ( "armv7a-kmc-solid-" ) {
2090
+ format ! ( "arm-kmc-eabi-{}" , gnu)
2091
+ } else if target. starts_with ( "aarch64-kmc-solid-" ) {
2092
+ format ! ( "aarch64-kmc-elf-{}" , gnu)
2085
2093
} else if self . get_host ( ) ? != target {
2086
2094
let prefix = self . prefix_for_target ( & target) ;
2087
2095
match prefix {
You can’t perform that action at this time.
0 commit comments