summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorPedro Ciambra <jabcross@users.noreply.github.com>2022-11-20 21:32:47 -0300
committerGitHub <noreply@github.com>2022-11-21 01:32:47 +0100
commit87cb9760ceffc5ee4c96b2ffbad71e087d530f4f (patch)
tree4d61698cc86edeeca6bd184c2f07314d647bdbc1 /var
parentd472e28bfea6edc245018b107c3072ce9a9b212c (diff)
downloadspack-87cb9760ceffc5ee4c96b2ffbad71e087d530f4f.tar.gz
spack-87cb9760ceffc5ee4c96b2ffbad71e087d530f4f.tar.bz2
spack-87cb9760ceffc5ee4c96b2ffbad71e087d530f4f.tar.xz
spack-87cb9760ceffc5ee4c96b2ffbad71e087d530f4f.zip
mold: new package for the mold linker (#34017)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mold/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mold/package.py b/var/spack/repos/builtin/packages/mold/package.py
new file mode 100644
index 0000000000..c1380caadd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/mold/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2022 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)
+
+from spack.package import *
+
+
+class Mold(CMakePackage):
+ """mold: A Modern Linker"""
+
+ homepage = "https://github.com/rui314/mold"
+ url = "https://github.com/rui314/mold/archive/refs/heads/release/1.7.1.zip"
+
+ maintainers = ["jabcross"]
+
+ version("1.7.1", sha256="e155f647c4c8555697f2d9544ba2f93a67023c4fff21b5b56aa3157700e14364")
+
+ depends_on("zlib")
+ depends_on("openssl")