#shim #homebrew #vita #psvita #vitasdk

nightly vita-newlib-shims

Shims for libc functions not provided by Vita SDK newlib

6 releases

0.3.1 Oct 18, 2023
0.3.0 Oct 18, 2023
0.2.2 Oct 9, 2023
0.2.1 Sep 26, 2023
0.1.0 May 21, 2023

#3 in #vitasdk

Download history 10/week @ 2024-02-26 4/week @ 2024-03-04 12/week @ 2024-03-11 23/week @ 2024-04-01 97/week @ 2024-04-15

120 downloads per month

MIT/Apache

11KB
232 lines

vita-newlib-shims

MIT/Apache 2.0 Crates.io GitHub Actions Build Status Current Release Main Commits RSS Feed

Standard library support for PlayStation Vita in Rust relies on Vita SDK newlib. Unfortunately, not all of the POSIX functions are implemented in it.

This repository aims to temporarily fix that by providing shims for the missing functions.

To use this crate:

  1. Add it as a dependency to your project

    cargo add vita-newlib-shims
    
  2. Import this crate in the root of your project:

    #[cfg(target_os = "vita")]
    use vita_newlib_shims as _;
    
  3. VITASDK environment variable must be set to your Vita SDK location.

During build this crate will check the exported symbols from the libc.a object file using arm-vita-eabi-nm of your Vita SDK installation, and will only provide shims for the missing functions.

License

Except where noted (below and/or in individual files), all code in this repository is dual-licensed at your option under either:

Dependencies

~42KB