diff options
author | Mikael Simberg <mikael.simberg@iki.fi> | 2022-07-05 10:52:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 10:52:52 +0200 |
commit | 8cf7241b640a3bccbf8381169166b8bbd2e0a453 (patch) | |
tree | 1785eab8efdfe648c4f8dea0b2f4d41f114ea44b | |
parent | f932a832ac0be41481d816c29480d4f6acdb65c1 (diff) | |
download | spack-8cf7241b640a3bccbf8381169166b8bbd2e0a453.tar.gz spack-8cf7241b640a3bccbf8381169166b8bbd2e0a453.tar.bz2 spack-8cf7241b640a3bccbf8381169166b8bbd2e0a453.tar.xz spack-8cf7241b640a3bccbf8381169166b8bbd2e0a453.zip |
Build llvm-amdgpu's libcxx with cmake --build (#31403)
CMAKE_GENERATOR may be set to something other than "Unix Makefiles" in
which case the build would fail because there is no Makefile for make to
build.
-rw-r--r-- | var/spack/repos/builtin/packages/llvm-amdgpu/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/llvm-amdgpu/package.py b/var/spack/repos/builtin/packages/llvm-amdgpu/package.py index 13440ff0dd..ce74666fe5 100644 --- a/var/spack/repos/builtin/packages/llvm-amdgpu/package.py +++ b/var/spack/repos/builtin/packages/llvm-amdgpu/package.py @@ -202,4 +202,4 @@ class LlvmAmdgpu(CMakePackage): ] cmake_args.extend(self.cmake_args()) cmake(*cmake_args) - make() + cmake("--build", ".") |