diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2024-09-19 16:38:37 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-19 14:32:40 +0200 |
commit | ad6deff8bb47bc4dd637d4612fb4d93055e99fb7 (patch) | |
tree | 577d41f27fd109a5938eb55f07ed2922b984828c /gnu/packages/gcc.scm | |
parent | 26643fa2756e02e13e92e86dfffac35926e037ba (diff) | |
download | guix-ad6deff8bb47bc4dd637d4612fb4d93055e99fb7.tar guix-ad6deff8bb47bc4dd637d4612fb4d93055e99fb7.tar.gz |
gnu: make-libiberty: Install the header demangle.h.
This header is wanted by Dyninst.
* gnu/packages/gcc.scm (make-libiberty):
Add include/demangle.h to install phase.
Change-Id: I01235071b75b412f55785d240cda248315b7a93e
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/gcc.scm')
-rw-r--r-- | gnu/packages/gcc.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 9ec4a3a687..164c8d782c 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -16,6 +16,7 @@ ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu> ;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1075,6 +1076,7 @@ using compilers other than GCC." (lib (string-append out "/lib/")) (include (string-append out "/include/"))) (install-file "libiberty.a" lib) + (install-file "../include/demangle.h" include) (install-file "../include/libiberty.h" include))))))) (inputs '()) (outputs '("out")) |