26 lines
No EOL
1.2 KiB
Bash
26 lines
No EOL
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
BINDGEN_VERSION=$(bindgen --version)
|
|
|
|
bindgen -o src/ffi.rs \
|
|
--raw-line "/// Generated with: ${BINDGEN_VERSION}" \
|
|
--whitelist-var "LUA.*" \
|
|
--whitelist-var "LUAJIT.*" \
|
|
--whitelist-type "lua_.*" \
|
|
--whitelist-type "luaL_.*" \
|
|
--whitelist-function "lua_.*" \
|
|
--whitelist-function "luaL_.*" \
|
|
--whitelist-function "luaJIT.*" \
|
|
--ctypes-prefix "libc" \
|
|
--use-core \
|
|
--impl-debug \
|
|
ffi.h -- -I luajit/src
|
|
|
|
sed -i -e 's/pub fn \(luaJIT_[^\(]*\)/\/\/\/ <https:\/\/luajit.org\/ext_c_api.html> \n pub fn \1/' src/ffi.rs
|
|
sed -i -e 's/pub fn \(lua_[^\(]*\)/\/\/\/ <https\:\/\/www.lua.org\/manual\/5.1\/manual.html#\1> \n pub fn \1/' src/ffi.rs
|
|
sed -i -e 's/pub fn \(luaL_[^\(]*\)/\/\/\/ <https\:\/\/www.lua.org\/manual\/5.1\/manual.html#\1> \n pub fn \1/' src/ffi.rs
|
|
sed -i -e 's/pub type \(lua_[^\=]*\)/\/\/\/ <https\:\/\/www.lua.org\/manual\/5.1\/manual.html#\1> \n pub type \1/' src/ffi.rs
|
|
sed -i -e 's/pub struct \(lua_[^\{]*\)/\/\/\/ <https\:\/\/www.lua.org\/manual\/5.1\/manual.html#\1> \n pub struct \1/' src/ffi.rs
|
|
sed -i -e 's/pub struct \(luaL_[^\{]*\)/\/\/\/ <https\:\/\/www.lua.org\/manual\/5.1\/manual.html#\1> \n pub struct \1/' src/ffi.rs
|
|
|
|
cargo +stable fmt |