mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 07:15:42 +00:00
16 lines
350 B
Bash
Executable File
16 lines
350 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
cd $(dirname $0)
|
|
|
|
(
|
|
sed -e '/automatically generated by rust-bindgen/,$d' src/bindings.rs
|
|
bindgen \
|
|
--with-derive-default \
|
|
--no-prepend-enum-name \
|
|
wrapper.h
|
|
) > new-bindings.rs~
|
|
|
|
mv new-bindings.rs~ src/bindings.rs
|