unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* Too many heap sections
@ 2017-12-07 20:04 Bryan Ferris
  2017-12-08  1:58 ` Chris Marusich
  2017-12-08 10:37 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Bryan Ferris @ 2017-12-07 20:04 UTC (permalink / raw)
  To: help-guix

[-- 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 --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-12-12 16:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-07 20:04 Too many heap sections Bryan Ferris
2017-12-08  1:58 ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).