소스 검색

aya-tool: enable clang_macro_fallback

See
https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.clang_macro_fallback.
Tamir Duberstein 5 달 전
부모
커밋
28a28c9872
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      aya-tool/src/bindgen.rs

+ 1 - 0
aya-tool/src/bindgen.rs

@@ -6,6 +6,7 @@ fn common_builder() -> Builder {
         .layout_tests(false)
         .generate_comments(false)
         .prepend_enum_name(false)
+        .clang_macro_fallback()
 }
 
 pub fn user_builder() -> Builder {