summaryrefslogtreecommitdiff
path: root/src/bin/bindgen.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/bindgen.rs')
-rw-r--r--src/bin/bindgen.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bin/bindgen.rs b/src/bin/bindgen.rs
index 2189c553..4e3ffd11 100644
--- a/src/bin/bindgen.rs
+++ b/src/bin/bindgen.rs
@@ -100,10 +100,6 @@ fn parse_args(args: &[String]) -> ParseResult {
options.builtins = true;
ix += 1u;
}
- "-abi" => {
- options.abi = args[ix + 1u].clone();
- ix += 2u;
- }
"-allow-bitfields" => {
options.fail_on_bitfield = false;
ix += 1u;
@@ -147,7 +143,6 @@ Options:
matching any rule are bound to.
-builtins Output bindings for builtin definitions
(for example __builtin_va_list)
- -abi <abi> Indicate abi of extern functions (default C)
-allow-bitfields Don't fail if we encounter a bitfield
(note that bindgen does not support bitfields)
-allow-unknown-types Don't fail if we encounter types we do not support,