gnu: boost: Explicity declare the _FILE_OFFSET_BITS we want.

* gnu/packages/boost.scm (boost)[arguments]<#:phases>[build]: Add cflags,
cxxflags.
This commit is contained in:
Danny Milosavljevic 2020-10-03 12:23:56 +02:00
parent 7af5f162a5
commit 0458e67095
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -148,6 +148,8 @@ (define-public boost
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "./b2"
(format #f "-j~a" (parallel-job-count))
(string-append "cflags=" (getenv "CFLAGS"))
(string-append "cxxflags=" (getenv "CXXFLAGS"))
make-flags)))
(replace 'install
(lambda* (#:key make-flags #:allow-other-keys)