diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-13 17:57:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-13 17:57:41 +0200 |
commit | 97b465feb1e4742a8a85fd9b835d32b7acfe8b41 (patch) | |
tree | 14fee96fdfe034a1d577ff0b5402fe139a935a19 /gnu/packages/make-bootstrap.scm | |
parent | 37550e67b9e9f70b72752b563028373eae8d99de (diff) | |
download | patches-97b465feb1e4742a8a85fd9b835d32b7acfe8b41.tar patches-97b465feb1e4742a8a85fd9b835d32b7acfe8b41.tar.gz |
gnu: make-bootstrap: Build libstdc++ in '%gcc-static'.
* gnu/packages/make-bootstrap.scm (%gcc-static): Re-enable C++.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index eeceb15db3..e50d56ed92 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -412,9 +412,11 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." ;; Make sure '-static' is passed where it matters. "--with-stage1-ldflags=-static" + ;; GCC 4.8+ requires a C++ compiler and library. + "--enable-languages=c,c++" + "--disable-shared" "--disable-plugin" - "--enable-languages=c" "--disable-libmudflap" "--disable-libatomic" "--disable-libsanitizer" |