Merge pull request #504 from nicholasbishop/bishop-no-uefi-asm
This commit is contained in:
commit
371a6856ee
1 changed files with 2 additions and 1 deletions
|
|
@ -465,7 +465,8 @@ mod c {
|
|||
}
|
||||
|
||||
// Remove the assembly implementations that won't compile for the target
|
||||
if llvm_target[0] == "thumbv6m" || llvm_target[0] == "thumbv8m.base" {
|
||||
if llvm_target[0] == "thumbv6m" || llvm_target[0] == "thumbv8m.base" || target_os == "uefi"
|
||||
{
|
||||
let mut to_remove = Vec::new();
|
||||
for (k, v) in sources.map.iter() {
|
||||
if v.ends_with(".S") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue