build.rs 353 B

1234567891011121314151617
  1. // -*- coding: utf-8 -*-
  2. //
  3. // Copyright 2021 Michael Büsch <m@bues.ch>
  4. //
  5. // Licensed under the Apache License version 2.0
  6. // or the MIT license, at your option.
  7. // SPDX-License-Identifier: Apache-2.0 OR MIT
  8. //
  9. fn main() {
  10. let ac = autocfg::new();
  11. ac.emit_has_type("i128");
  12. autocfg::rerun_path("build.rs");
  13. }
  14. // vim: ts=4 sw=4 expandtab