summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Green <greenc@fnal.gov>2019-02-12 12:39:19 -0600
committerPeter Scheibel <scheibel1@llnl.gov>2019-02-12 12:39:19 -0600
commit05f565356fa466cbb344da7fe502775b9c520213 (patch)
treef858c9c87a1f383ecc5700ce57c59bca30228b11 /lib
parentf9c27f52bd2e033237cfd9ad73a597781310a55b (diff)
downloadspack-05f565356fa466cbb344da7fe502775b9c520213.tar.gz
spack-05f565356fa466cbb344da7fe502775b9c520213.tar.bz2
spack-05f565356fa466cbb344da7fe502775b9c520213.tar.xz
spack-05f565356fa466cbb344da7fe502775b9c520213.zip
Allow secondary generators when building with CMake. (#9324)
CMake supports the notion of secondary generators which provide extra information to (e.g.) IDEs over and above that normally provided by the primary generator. Spack only supports the 'Unix Makefiles' and 'Ninja' primary generators but was not parsing out the primary generator when a secondary generator was also included (e.g. for a generator attribute like 'Codeblocks - Ninja'). This adds a regex for extracting the primary generator for validation. Since the secondary generator is irrelevant to a Spack build, it is passed on to CMake without further validation.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_systems/cmake.py37
-rw-r--r--lib/spack/spack/test/build_systems.py17
2 files changed, 50 insertions, 4 deletions
diff --git a/lib/spack/spack/build_systems/cmake.py b/lib/spack/spack/build_systems/cmake.py
index acdfa66ea2..5d70994bd4 100644
--- a/lib/spack/spack/build_systems/cmake.py
+++ b/lib/spack/spack/build_systems/cmake.py
@@ -7,6 +7,7 @@
import inspect
import os
import platform
+import re
import spack.build_environment
from llnl.util.filesystem import working_dir
@@ -14,6 +15,19 @@ from spack.util.environment import filter_system_paths
from spack.directives import depends_on, variant
from spack.package import PackageBase, InstallError, run_after
+# Regex to extract the primary generator from the CMake generator
+# string.
+_primary_generator_extractor = re.compile(r'(?:.* - )?(.*)')
+
+
+def _extract_primary_generator(generator):
+ """Use the compiled regex _primary_generator_extractor to extract the
+ primary generator from the generator string which may contain an
+ optional secondary generator.
+ """
+ primary_generator = _primary_generator_extractor.match(generator).group(1)
+ return primary_generator
+
class CMakePackage(PackageBase):
"""Specialized class for packages built using CMake
@@ -42,6 +56,17 @@ class CMakePackage(PackageBase):
+-----------------------------------------------+--------------------+
+ The generator used by CMake can be specified by providing the
+ generator attribute. Per
+ https://cmake.org/cmake/help/git-master/manual/cmake-generators.7.html,
+ the format is: [<secondary-generator> - ]<primary_generator>. The
+ full list of primary and secondary generators supported by CMake may
+ be found in the documentation for the version of CMake used;
+ however, at this time Spack supports only the primary generators
+ "Unix Makefiles" and "Ninja." Spack's CMake support is agnostic with
+ respect to primary generators. Spack will generate a runtime error
+ if the generator string does not follow the prescribed format, or if
+ the primary generator is not supported.
"""
#: Phases of a CMake package
phases = ['cmake', 'build', 'install']
@@ -108,11 +133,13 @@ class CMakePackage(PackageBase):
generator = 'Unix Makefiles'
# Make sure a valid generator was chosen
- valid_generators = ['Unix Makefiles', 'Ninja']
- if generator not in valid_generators:
+ valid_primary_generators = ['Unix Makefiles', 'Ninja']
+ primary_generator = _extract_primary_generator(generator)
+ if primary_generator not in valid_primary_generators:
msg = "Invalid CMake generator: '{0}'\n".format(generator)
msg += "CMakePackage currently supports the following "
- msg += "generators: '{0}'".format("', '".join(valid_generators))
+ msg += "primary generators: '{0}'".\
+ format("', '".join(valid_primary_generators))
raise InstallError(msg)
try:
@@ -124,9 +151,11 @@ class CMakePackage(PackageBase):
'-G', generator,
'-DCMAKE_INSTALL_PREFIX:PATH={0}'.format(pkg.prefix),
'-DCMAKE_BUILD_TYPE:STRING={0}'.format(build_type),
- '-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON'
]
+ if primary_generator == 'Unix Makefiles':
+ args.append('-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON')
+
if platform.mac_ver()[0]:
args.extend([
'-DCMAKE_FIND_FRAMEWORK:STRING=LAST',
diff --git a/lib/spack/spack/test/build_systems.py b/lib/spack/spack/test/build_systems.py
index 1932d1bbc2..fb9117bc0c 100644
--- a/lib/spack/spack/test/build_systems.py
+++ b/lib/spack/spack/test/build_systems.py
@@ -115,6 +115,23 @@ def test_cmake_std_args(config, mock_packages):
assert get_std_cmake_args(pkg)
+def test_cmake_bad_generator(config, mock_packages):
+ s = Spec('cmake-client')
+ s.concretize()
+ pkg = spack.repo.get(s)
+ pkg.generator = 'Yellow Sticky Notes'
+ with pytest.raises(spack.package.InstallError):
+ get_std_cmake_args(pkg)
+
+
+def test_cmake_secondary_generator(config, mock_packages):
+ s = Spec('cmake-client')
+ s.concretize()
+ pkg = spack.repo.get(s)
+ pkg.generator = 'CodeBlocks - Unix Makefiles'
+ assert get_std_cmake_args(pkg)
+
+
@pytest.mark.usefixtures('config', 'mock_packages')
class TestAutotoolsPackage(object):