Source code for spack.cmd.build_env

# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
import spack.cmd.common.env_utility as env_utility

description = (
    "run a command in a spec's install environment, or dump its environment to screen or file"
)
section = "build"
level = "long"

setup_parser = env_utility.setup_parser


[docs]def build_env(parser, args): env_utility.emulate_env_utility("build-env", "build", args)