3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rust/bindgen/default.nix

71 lines
1.8 KiB
Nix
Raw Normal View History

rust-bindgen: some features of bindgen require a recent version of llvm Features likes 'asm goto' are only available if compiled with llvm >= 11. This is required for rust-in-linux development for example. I believe binding to llvmPackages_latest is an acceptable tradeoff. ``` RUSTC L rust/build_error.o error: unknown argument: '-fmacro-prefix-map=./=' error: unknown argument: '-fno-stack-clash-protection' error: unknown warning option '-Wno-frame-address'; did you mean '-Wno-address'? [-Wunknown-warning-option] error: unknown warning option '-Wno-pointer-to-enum-cast' [-Wunknown-warning-option] ./arch/x86/include/asm/bitops.h:138:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/bitops.h:162:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/bitops.h:201:9: error: 'asm goto' constructs are not supported yet ./include/linux/list.h:282:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./include/linux/list.h:318:27: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./include/linux/list.h:821:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./include/linux/list.h:830:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./arch/x86/include/asm/atomic.h:83:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic.h:123:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic.h:137:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic.h:152:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:76:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:118:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:132:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:147:9: error: 'asm goto' constructs are not supported yet ./include/linux/jump_label.h:278:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:284:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:306:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:309:3: error: expected '(' after 'asm' ./include/linux/jump_label.h:317:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:320:3: error: expected '(' after 'asm' ./include/linux/llist.h:189:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] fatal error: too many errors emitted, stopping now [-ferror-limit=] error: unknown argument: '-fmacro-prefix-map=./=', err: true error: unknown argument: '-fno-stack-clash-protection', err: true error: unknown warning option '-Wno-frame-address'; did you mean '-Wno-address'? [-Wunknown-warning-option], err: true error: unknown warning option '-Wno-pointer-to-enum-cast' [-Wunknown-warning-option], err: true ./arch/x86/include/asm/bitops.h:138:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/bitops.h:162:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/bitops.h:201:9: error: 'asm goto' constructs are not supported yet, err: true ./include/linux/list.h:282:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./include/linux/list.h:318:27: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./include/linux/list.h:821:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./include/linux/list.h:830:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./arch/x86/include/asm/atomic.h:83:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic.h:123:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic.h:137:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic.h:152:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:76:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:118:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:132:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:147:9: error: 'asm goto' constructs are not supported yet, err: true ./include/linux/jump_label.h:278:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:284:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:306:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:309:3: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:317:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:320:3: error: expected '(' after 'asm', err: true ./include/linux/llist.h:189:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false fatal error: too many errors emitted, stopping now [-ferror-limit=], err: true thread 'main' panicked at 'Unable to generate bindings: ()', src/main.rs:54:36 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace make[1]: *** [rust/Makefile:141: rust/bindings_generated.rs] Error 1 make[1]: *** Deleting file 'rust/bindings_generated.rs' ``` Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
2021-06-16 18:57:16 +01:00
{ lib, fetchFromGitHub, rustPlatform, clang, llvmPackages_latest, rustfmt, writeScriptBin
, runtimeShell
, bash
}:
2016-11-23 17:09:29 +00:00
2017-03-22 02:00:11 +00:00
rustPlatform.buildRustPackage rec {
pname = "rust-bindgen";
2021-03-09 13:28:21 +00:00
version = "0.57.0";
2016-11-23 17:09:29 +00:00
RUSTFLAGS = "--cap-lints warn"; # probably OK to remove after update
2016-11-23 17:09:29 +00:00
src = fetchFromGitHub {
owner = "rust-lang";
repo = pname;
2018-03-26 00:08:04 +01:00
rev = "v${version}";
2021-03-09 13:28:21 +00:00
sha256 = "sha256-0d8+Rkb4h1DoFUQ7u2/kPR/fUUz0YvI+hNT4iXL3mxY=";
2016-11-23 17:09:29 +00:00
};
cargoSha256 = "0r60smhlx1992a1s1k5sxjpdqllb2xsqcimgx3ldp5fdkfphk3cw";
#for substituteAll
rust-bindgen: some features of bindgen require a recent version of llvm Features likes 'asm goto' are only available if compiled with llvm >= 11. This is required for rust-in-linux development for example. I believe binding to llvmPackages_latest is an acceptable tradeoff. ``` RUSTC L rust/build_error.o error: unknown argument: '-fmacro-prefix-map=./=' error: unknown argument: '-fno-stack-clash-protection' error: unknown warning option '-Wno-frame-address'; did you mean '-Wno-address'? [-Wunknown-warning-option] error: unknown warning option '-Wno-pointer-to-enum-cast' [-Wunknown-warning-option] ./arch/x86/include/asm/bitops.h:138:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/bitops.h:162:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/bitops.h:201:9: error: 'asm goto' constructs are not supported yet ./include/linux/list.h:282:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./include/linux/list.h:318:27: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./include/linux/list.h:821:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./include/linux/list.h:830:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] ./arch/x86/include/asm/atomic.h:83:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic.h:123:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic.h:137:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic.h:152:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:76:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:118:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:132:9: error: 'asm goto' constructs are not supported yet ./arch/x86/include/asm/atomic64_64.h:147:9: error: 'asm goto' constructs are not supported yet ./include/linux/jump_label.h:278:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:284:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:306:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:309:3: error: expected '(' after 'asm' ./include/linux/jump_label.h:317:2: error: expected '(' after 'asm' ./include/linux/jump_label.h:320:3: error: expected '(' after 'asm' ./include/linux/llist.h:189:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] fatal error: too many errors emitted, stopping now [-ferror-limit=] error: unknown argument: '-fmacro-prefix-map=./=', err: true error: unknown argument: '-fno-stack-clash-protection', err: true error: unknown warning option '-Wno-frame-address'; did you mean '-Wno-address'? [-Wunknown-warning-option], err: true error: unknown warning option '-Wno-pointer-to-enum-cast' [-Wunknown-warning-option], err: true ./arch/x86/include/asm/bitops.h:138:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/bitops.h:162:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/bitops.h:201:9: error: 'asm goto' constructs are not supported yet, err: true ./include/linux/list.h:282:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./include/linux/list.h:318:27: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./include/linux/list.h:821:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./include/linux/list.h:830:10: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false ./arch/x86/include/asm/atomic.h:83:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic.h:123:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic.h:137:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic.h:152:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:76:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:118:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:132:9: error: 'asm goto' constructs are not supported yet, err: true ./arch/x86/include/asm/atomic64_64.h:147:9: error: 'asm goto' constructs are not supported yet, err: true ./include/linux/jump_label.h:278:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:284:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:306:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:309:3: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:317:2: error: expected '(' after 'asm', err: true ./include/linux/jump_label.h:320:3: error: expected '(' after 'asm', err: true ./include/linux/llist.h:189:9: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier], err: false fatal error: too many errors emitted, stopping now [-ferror-limit=], err: true thread 'main' panicked at 'Unable to generate bindings: ()', src/main.rs:54:36 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace make[1]: *** [rust/Makefile:141: rust/bindings_generated.rs] Error 1 make[1]: *** Deleting file 'rust/bindings_generated.rs' ``` Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
2021-06-16 18:57:16 +01:00
libclang = llvmPackages_latest.libclang.lib;
inherit bash;
buildInputs = [ libclang ];
propagatedBuildInputs = [ clang ]; # to populate NIX_CXXSTDLIB_COMPILE
2016-11-23 17:09:29 +00:00
configurePhase = ''
export LIBCLANG_PATH="${libclang.lib}/lib"
2016-11-23 17:09:29 +00:00
'';
postInstall = ''
mv $out/bin/{bindgen,.bindgen-wrapped};
substituteAll ${./wrapper.sh} $out/bin/bindgen
chmod +x $out/bin/bindgen
'';
doCheck = true;
checkInputs =
let fakeRustup = writeScriptBin "rustup" ''
#!${runtimeShell}
shift
shift
exec "$@"
'';
in [
rustfmt
fakeRustup # the test suite insists in calling `rustup run nightly rustfmt`
clang
];
preCheck = ''
# for the ci folder, notably
patchShebangs .
'';
2016-11-23 17:09:29 +00:00
meta = with lib; {
description = "Automatically generates Rust FFI bindings to C (and some C++) libraries";
longDescription = ''
Bindgen takes a c or c++ header file and turns them into
rust ffi declarations.
As with most compiler related software, this will only work
inside a nix-shell with the required libraries as buildInputs.
'';
2020-03-12 06:10:16 +00:00
homepage = "https://github.com/rust-lang/rust-bindgen";
2016-11-23 17:09:29 +00:00
license = with licenses; [ bsd3 ];
platforms = platforms.unix;
2020-08-17 00:30:07 +01:00
maintainers = with maintainers; [ johntitor ralith ];
2016-11-23 17:09:29 +00:00
};
}