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

Allow specifying the C++ edition #63

Closed
wants to merge 1 commit into from

Commits on Jul 13, 2023

  1. Allow specifying the C++ edition

    In certain build environments *cough ChromeOS cough* the C++ edition may
    be hamstrung. For example, chrono may not be available - see
    https://chromium.googlesource.com/chromium/src/+/HEAD/styleguide/c++/c++-features.md#chrono_banned.
    
    To workaround this, allow an environment variable to specify the
    edition. For example: `TRACY_CLIENT_CPP_EDITION=gnu++14 cargo build`
    
    Note that since compilers seem to be resilient to badly formed editions,
    the implementation itself will check for correctness.
    bwidawsk committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    473819d View commit details
    Browse the repository at this point in the history