package.py: expose types of common globals unconditionally (#48588)
This commit is contained in:
parent
db997229f2
commit
00e804a94b
@ -106,8 +106,16 @@
|
|||||||
from spack.variant import any_combination_of, auto_or_any_combination_of, disjoint_sets
|
from spack.variant import any_combination_of, auto_or_any_combination_of, disjoint_sets
|
||||||
from spack.version import Version, ver
|
from spack.version import Version, ver
|
||||||
|
|
||||||
# These are just here for editor support; they will be replaced when the build env
|
# These are just here for editor support; they may be set when the build env is set up.
|
||||||
# is set up.
|
configure: Executable
|
||||||
make = MakeExecutable("make", jobs=1)
|
make_jobs: int
|
||||||
ninja = MakeExecutable("ninja", jobs=1)
|
make: MakeExecutable
|
||||||
configure = Executable(join_path(".", "configure"))
|
ninja: MakeExecutable
|
||||||
|
python_include: str
|
||||||
|
python_platlib: str
|
||||||
|
python_purelib: str
|
||||||
|
python: Executable
|
||||||
|
spack_cc: str
|
||||||
|
spack_cxx: str
|
||||||
|
spack_f77: str
|
||||||
|
spack_fc: str
|
||||||
|
Loading…
Reference in New Issue
Block a user