Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make callsite-id in log! macro deterministic for Clojure #354

Closed

Commits on Sep 27, 2022

  1. Make callsite-id in log! macro deterministic for Clojure

    Since the non-deterministic `rand` was used as part of generating
    `callsite-id` in the `log!` macro at compile time, the compiler would
    produce non-deterministic bytecode as a result. This thwarts
    reproducible builds.
    
    Instead, use a RNG with a fixed seed. Unfortunately, both the JS
    standard library and Google Closure's library don't seem to provide a
    similar facility, so it's only implemented for Clojure.
    DerGuteMoritz committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    b81cb8c View commit details
    Browse the repository at this point in the history