diff options
-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")) |