5 unstable releases

Uses old Rust 2015

0.3.3 Jan 20, 2017
0.3.2 Jan 16, 2017
0.3.1 Jan 16, 2017
0.2.0 Jan 11, 2017
0.1.0 Jan 9, 2017

#11 in #auxiliary

Download history 33/week @ 2023-12-17 38/week @ 2023-12-24 108/week @ 2023-12-31 88/week @ 2024-01-07 44/week @ 2024-01-14 8/week @ 2024-01-21 20/week @ 2024-02-18 9/week @ 2024-02-25 4/week @ 2024-03-03 16/week @ 2024-03-10 9/week @ 2024-03-17 1/week @ 2024-03-24 40/week @ 2024-03-31

66 downloads per month

Custom license

28KB
327 lines

Build Status

Add the dependency to your Cargo.toml:

auxv = "0.3.2"

See the documentation.

Running tests

Because the width of unsigned long varies between architectures, some tests are only run on 64-bit systems and others are only run on 32-bit systems. On a typical x64 Linux system with glibc, the default toolchain will be x86_64-unknown-linux-gnu, but you can run the 32-bit tests by installing the 32-bit glibc toolchain:

rustup target add i686-unknown-linux-gnu

To run tests for both 32bit and 64bit c_ulong on a 64-bit host:

cargo test
cargo test --target i686-unknown-linux-gnu

You should see different tests running in each case.

Testing other OSs

There are various vagrant boxes defined in the Vagrantfile. Windows and macOS are a pain to set up build tools on, but eventually the code will compile there, though of course it won't work properly. It should work fine on all Linux boxes and the FreeBSD one.

Dependencies

~135KB