From: Bryan Ferris <saffsnail@gmail.com>
To: help-guix@gnu.org
Subject: Too many heap sections
Date: Thu, 7 Dec 2017 12:04:46 -0800 [thread overview]
Message-ID: <CABkR=SURX=gzZOrCxsvZ4PyHgnEGAb0zYCCODZomT_5SMzgVWA@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 1735 bytes --]
Hello,
I have recently (re-)installed Guix, and I am trying to package Jekyll so
that I can build my website on this system. I used `guix import gem` to get
started, and then repeated the process for a number of it's dependencies.
Now when I try to build it (with `guix package -f jekyll.scm`) I get the
following error:
Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS
To me, this sounds like I'm using too much RAM. However, I don't understand
how package definitions could cause that problem, unless the source code
was too big or something equally absurd. Here's my current package
definition:
(define ruby-jekyll (package
(name "ruby-jekyll")
(version "3.6.2")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "jekyll" version))
(sha256
(base32
"0rgdml6ypwwxrwv4dk2r8v9vp0ch3c060f6svhxggvk31w9k5lki")
)
)
)
(build-system ruby-build-system)
(arguments '(#:phases (modify-phases %standard-phases (delete 'check))))
(propagated-inputs
`(("ruby-addressable" ,ruby-addressable)
("ruby-colorator" ,ruby-colorator)
("ruby-jekyll" ,ruby-jekyll)
("ruby-jekyll-sass-converter"
,ruby-jekyll-sass-converter)
("ruby-jekyll-watch" ,ruby-jekyll-watch)
("ruby-kramdown" ,ruby-kramdown)
("ruby-liquid" ,ruby-liquid)
("ruby-mercenary" ,ruby-mercenary)
("ruby-pathutil" ,ruby-pathutil)
("ruby-rouge" ,ruby-rouge)
("ruby-safe-yaml" ,ruby-safe-yaml)
)
)
(synopsis
"Jekyll is a simple, blog aware, static site generator.")
(description
"Jekyll is a simple, blog aware, static site generator.")
(home-page "https://github.com/jekyll/jekyll")
(license expat)
))
Thanks,
Bryan
[-- Attachment #2: Type: text/html, Size: 2330 bytes --]
next reply other threads:[~2017-12-07 20:04 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-07 20:04 Bryan Ferris [this message]
2017-12-08 1:58 ` Too many heap sections Chris Marusich
2017-12-08 10:37 ` Ludovic Courtès
2017-12-08 16:27 ` Bryan Ferris
2017-12-12 16:15 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CABkR=SURX=gzZOrCxsvZ4PyHgnEGAb0zYCCODZomT_5SMzgVWA@mail.gmail.com' \
--to=saffsnail@gmail.com \
--cc=help-guix@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.