Skip to content

Commit

Permalink
Added assembly files to freertos_port_files()
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindbergem committed Aug 23, 2024
1 parent 59b0a36 commit 4c9c590
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion freertos-cargo-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ impl Builder {
.filter_map(|entry| {
let f_name = entry.path().to_str().unwrap();

if f_name.ends_with(".c") {
if f_name.ends_with(".c") || f_name.ends_with(".S") {
eprintln!("filename = {}", f_name);
return Some(entry.path().to_owned());
}
None
Expand Down

0 comments on commit 4c9c590

Please sign in to comment.