aboutsummaryrefslogtreecommitdiff
path: root/doc/environment-gdb.scm
blob: 040a8637f8c3f79d240e7e73d390bb2bf078e8bf (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(use-modules (guix)
             (gnu packages gdb)
             (gnu packages autotools)
             (gnu packages texinfo))

;; Augment the package definition of GDB with the build tools
;; needed when developing GDB (and which are not needed when
;; simply installing it.)
(package (inherit gdb)
  (native-inputs `(("autoconf" ,autoconf-2.64)
                   ("automake" ,automake)
                   ("texinfo" ,texinfo)
                   ,@(package-native-inputs gdb))))
an class='msg-avail'>...* gnu/packages/boost.scm (boost)[arguments]: Add #:configure-flags. Adjust configure phase accordingly. Split out shell patching to separate phase. While at it, remove obsolete GNU/Hurd substitution. (boost-for-mysql)[arguments]: Adjust accordingly. Marius Bakke 2022-07-06gnu: Boost: Avoid usage of 'this-package-input'....* gnu/packages/boost.scm (boost)[arguments]: Use SEARCH-INPUT-FILE instead of THIS-PACKAGE-INPUT & co. (boost-for-mysql)[arguments]: Likewise. Marius Bakke 2022-07-06gnu: boost-mpi: OpenMPI is not native....* gnu/packages/boost.scm (boost-mpi)[native-inputs]: Move OPENMPI ... [inputs]: ... here. Marius Bakke 2022-07-06gnu: Boost: Python input is not native....Even though it is not referenced, and not used when cross-compiling, the architecture should match. * gnu/packages/boost.scm (boost)[native-inputs]: Move PYTHON-MINIMAL-WRAPPER ... [inputs]: ... here. * gnu/packages/boost.scm (boost-for-mysql)[native-inputs, inputs]: Adjust accordingly. Marius Bakke 2022-07-06gnu: boost, boost-static: Consolidate libboost_python phases....* gnu/packages/boost.scm (boost)[arguments]: Determine library extension based on #:make-flags in 'provide-libboost_python phase. (boost-static)[arguments]: Remove #:phases. Marius Bakke 2022-07-06gnu: boost-mpi: Remove input labels....* gnu/packages/boost.scm (boost-mpi)[native-inputs]: Use MODIFY-INPUTS and remove labels. [arguments]: Use G-expression. Marius Bakke 2022-06-30gnu: Boost: Use G-expressions....* gnu/packages/boost.scm (boost, boost-static, boost-for-mysql)[arguments]: Rewrite as gexp. Remove label usage. Marius Bakke