Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

wasm-builder: Fix constant re-running of build.rs scripts. #11624

Merged
merged 2 commits into from
Jun 14, 2022

Commits on Jun 9, 2022

  1. wasm-builder: Fix constant re-running of build.rs scripts.

    Recently we added the wasm binaries to the `rerun-if-changed` list. The problem with that is that
    they have a later mtime than the `invoked.timestamp` file and this file's mtime is used to determine
    if the `build.rs` script needs to be re-run. The solution to this is that we copy the mtime of this
    `invoked.timestamp` file and add it to the wasm binaries. Then cargo/rustc doesn't constantly wants
    to rerun the `build.rs` script.
    bkchr committed Jun 9, 2022
    Configuration menu
    Copy the full SHA
    2e5a885 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Configuration menu
    Copy the full SHA
    e2977d5 View commit details
    Browse the repository at this point in the history