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

DM-13910: make compiler check fire only when needed #49

Merged
merged 1 commit into from
Apr 2, 2018

Commits on Apr 2, 2018

  1. make compiler check fire only when needed

    The compiler check in lsst.sconsUtils.state._configureCommon
    fires whenever you import lsst.sconsUtils, even if you don't
    have any C++ code and all you want out of lsst.sconsUtils is
    some utility completely unrelated to C++. Besides just wasting
    time, this makes it difficult to run ci_hsc on a cluster nodes
    that don't have the latest gcc installed.
    
    Instead, have the compiler check only fire when we need it, as
    defined by instantiating BasicSConstruct. The compiler check
    can also be disabled when using BasicSConstruct by instantiating
    it with disableCc=True.
    PaulPrice committed Apr 2, 2018
    Configuration menu
    Copy the full SHA
    22e3848 View commit details
    Browse the repository at this point in the history