diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-17 16:13:17 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:32 -0500 |
commit | 37b589425fa9f5ee6f0c7999e0f2c35c7438b7e4 (patch) | |
tree | 2411f0af3c48c2d45e2f10559992fdbf333ed4a3 /gnu/packages/llvm.scm | |
parent | e8298b8cf3f3222ae916c0c21c223e76533fd88a (diff) |
gnu: llvm-12: Use quasiquote, addressing TODO.
* gnu/packages/llvm.scm (llvm-12)[configure-flags]: Use quasiquote.
Diffstat (limited to 'gnu/packages/llvm.scm')
-rw-r--r-- | gnu/packages/llvm.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index e708c02884..83f57ec28e 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -578,11 +578,8 @@ output), and Binutils.") (propagated-inputs (list zlib)) ;to use output from llvm-config (arguments - ;; TODO(core-updates): Unconditionally use quasiquote `(#:configure-flags - ,#~(#$(if (%current-target-system) - #~quasiquote - #~quote) + ,#~(quasiquote ;; These options are required for cross-compiling LLVM according to ;; https://llvm.org/docs/HowToCrossCompileLLVM.html. (#$@(if (%current-target-system) |