query
On this page

overrideCC

pkgs.overrideCC

Docs pulled from | This Revision | 17 minutes ago


Override the compiler in stdenv for specific packages.


Noogle detected

Implementation

The following is the current implementation of this function.

overrideCC =
    stdenv: cc:
    stdenv.override {
      allowedRequisites = null;
      cc = cc;
      hasCC = cc != null;
    };