1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/env bash # Usage: # # ./regen_linux_bindings path/to/bindgen/executable # # Regenerate the linux bindings for dl_iterate_phdr and friends. set -xe cd $(dirname $0) BINDGEN=$1 $BINDGEN \ --raw-line '#![allow(non_snake_case)]' \ --raw-line '#![allow(non_camel_case_types)]' \ --whitelist-function dl_iterate_phdr \ ./src/linux/bindings.h \ > ./src/linux/bindings.rs