GNU bug report logs -
#56785
[PATCH] gnu: lldb: Update to 14.0.6.
Previous Next
Reported by: Greg Hogan <code <at> greghogan.com>
Date: Tue, 26 Jul 2022 17:05:02 UTC
Severity: normal
Tags: patch
Done: 宋文武 <iyzsong <at> envs.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#56785: [PATCH] gnu: lldb: Update to 14.0.6.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 56785 <at> debbugs.gnu.org.
--
56785: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56785
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Greg Hogan <code <at> greghogan.com> writes:
> * gnu/packages/llvm.scm (lldb): Update to 14.0.6.
Pushed, thank you!
[Message part 3 (message/rfc822, inline)]
* gnu/packages/llvm.scm (lldb): Update to 14.0.6.
[source]: Fetch using LLVM-MONOREPO.
[phases]: Add phase to change to source subdirectory.
[inputs]: Change from LLVM-13 and CLANG-13 to LLVM-14 and CLANG-14.
---
gnu/packages/llvm.scm | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 5a2f411eb2..2a139f0471 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1374,21 +1374,22 @@ (define-public lld-as-ld-wrapper
(define-public lldb
(package
(name "lldb")
- (version "13.0.1")
- (source (origin
- (method url-fetch)
- (uri (llvm-uri "lldb" version))
- (sha256
- (base32
- "05nvcbgb4rx860r3jzsbpvcbzpd0i7nsm5qrpkyfhg5vrh5mj32a"))))
+ (version "14.0.6")
+ (source (llvm-monorepo version))
(build-system cmake-build-system)
(arguments
- `(#:configure-flags '("-DCMAKE_CXX_COMPILER=clang++")))
+ (list
+ #:configure-flags #~(list "-DOPENMP_TEST_CXX_COMPILER=clang++")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir-to-source
+ (lambda _
+ (chdir "lldb"))))))
(native-inputs
(list pkg-config swig))
(inputs
- (list clang-13
- llvm-13
+ (list clang-14
+ llvm-14
;; Optional (but recommended) inputs.
ncurses
libedit
--
2.37.1
This bug report was last modified 2 years and 295 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.