diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-05-16 00:23:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-05-16 00:23:20 +0200 |
commit | 20c122a4b0798a87c44edbc37229f9c38e44386c (patch) | |
tree | f27c947aded7437fafc26e0f41d5fefe69fc4276 /gnu/packages/bdw-gc.scm | |
parent | a81c898fd7a69ed4733baa79ac27da7f862161b7 (diff) | |
download | guix-20c122a4b0798a87c44edbc37229f9c38e44386c.tar.gz |
gnu: libgc: Remove 'libgc/disable-munmap'.
This variant is already the default on this branch. * gnu/packages/bdw-gc.scm (libgc/disable-munmap): Remove.
Diffstat (limited to 'gnu/packages/bdw-gc.scm')
-rw-r--r-- | gnu/packages/bdw-gc.scm | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm index 52725238b4..0d82889bac 100644 --- a/gnu/packages/bdw-gc.scm +++ b/gnu/packages/bdw-gc.scm @@ -89,17 +89,6 @@ C or C++ programs, though that is not its primary goal.") (license (x11-style (string-append home-page "license.txt"))))) -(define-public libgc/disable-munmap - ;; TODO: Use '--disable-munmap' by default on next rebuild cycle. - (package/inherit libgc - (arguments - ;; Work around <https://github.com/ivmai/bdwgc/issues/353>. - (substitute-keyword-arguments (package-arguments libgc) - ((#:configure-flags flags ''()) - `(cons "--disable-munmap" ,flags)))) - (properties `((hidden? . #t) - ,@(package-properties libgc))))) - ;; TODO: Add a static output in libgc in the next rebuild cycle. (define-public libgc/static-libs (package/inherit |