options: mark clang-args last

before, bindgen -- -I blah would try to open `-I` as a header file.
diff --git a/src/options.rs b/src/options.rs
index 07195bf..61f4f76 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -150,6 +150,7 @@
                 .help("Time the different bindgen phases and print to stderr"),
             // All positional arguments after the end of options marker, `--`
             Arg::with_name("clang-args")
+                .last(true)
                 .multiple(true),
             Arg::with_name("emit-clang-ast")
                 .long("emit-clang-ast")