Skip to content

Commit

Permalink
fix(build): wrong vendor lib filename
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Oct 27, 2023
1 parent d013553 commit 1901926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fn main() {

fs::write(out_dir.join("libISP583.a"), include_bytes!("vendor/libISP583.a")).unwrap();

fs::write(out_dir.join("libCH58xBLE.a"), include_bytes!("vendor/libCH58xBLE.a")).unwrap();
fs::write(out_dir.join("LIBCH58xBLE.a"), include_bytes!("vendor/libCH58xBLE.a")).unwrap();

Check failure on line 9 in build.rs

View workflow job for this annotation

GitHub Actions / build

couldn't read vendor/libCH58xBLE.a: No such file or directory (os error 2)

// Put the linker script somewhere the linker can find it.
fs::write(out_dir.join("link.x"), include_bytes!("link.x")).unwrap();
Expand Down

0 comments on commit 1901926

Please sign in to comment.