* [Buildroot] [git commit] pkg-download.mk: fix multiple matches in shallow clone test
From: Peter Korsgaard @ 2012-12-09 20:46 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=63eabbb11ec31e6629169c8258b4c73b90b6e8b9
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Move the git reference directly to git-ls-remote rather than
piping the output to grep, to help avoid reporting partial
matches rather than the actual requested reference. Also,
add quotes to protest "test" from failing when multiple
strings are reported.
Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/pkg-download.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index ea01b05..1705fcd 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -82,7 +82,7 @@ domainseparator=$(if $(1),$(1),/)
define DOWNLOAD_GIT
test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
(pushd $(DL_DIR) > /dev/null && \
- ((test `git ls-remote $($(PKG)_SITE) | cut -f 2- | grep $($(PKG)_DL_VERSION)` && \
+ ((test "`git ls-remote $($(PKG)_SITE) $($(PKG)_DL_VERSION)`" && \
echo "Doing shallow clone" && \
$(GIT) clone --depth 1 -b $($(PKG)_DL_VERSION) --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME)) || \
(echo "Doing full clone" && \
^ permalink raw reply related
* [Buildroot] [PATCH] fbv: add license info
From: Peter Korsgaard @ 2012-12-09 20:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50C4A8CD.2090407@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Hi,
>> +FBV_LICENSE = GPLv2
Arnout> Although the README and COPYING files claim it's version 2,
Arnout> all source files say version 2 or later.
Arnout> I'm not sure what to do here. The safe option is:
Arnout> FBV_LICENSE = GPLv2 (or later?)
Or simply GPLv2. It might allow later as well, but GPLv2 is certainly
true.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] sane-backends: fix documentation build failure
From: Peter Korsgaard @ 2012-12-09 20:40 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=fc3a89d1cde8da2df17fdcc42289f330c2711d9b
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Disable documentation build, it seems to break with older
texlive/kpathsea versions, fixes:
http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/
Also switch to alioth mirror since the original tarball is gone from the
regular site when 1.0.23 was released.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/sane-backends/sane-backends.mk | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/package/sane-backends/sane-backends.mk b/package/sane-backends/sane-backends.mk
index 56ce82d..496dca4 100644
--- a/package/sane-backends/sane-backends.mk
+++ b/package/sane-backends/sane-backends.mk
@@ -5,7 +5,7 @@
#############################################################
SANE_BACKENDS_VERSION = 1.0.22
SANE_BACKENDS_SOURCE = sane-backends-$(SANE_BACKENDS_VERSION).tar.gz
-SANE_BACKENDS_SITE = ftp://ftp2.sane-project.org/pub/sane/sane-backends-$(SANE_BACKENDS_VERSION)
+SANE_BACKENDS_SITE = https://alioth.debian.org/frs/download.php/3503
ifeq ($(BR2_PACKAGE_LIBUSB),y)
SANE_BACKENDS_DEPENDENCIES += libusb
@@ -37,4 +37,10 @@ else
SANE_BACKENDS_CONF_OPT += --without-snmp
endif
+define SANE_BACKENDS_DISABLE_DOCS
+ $(SED) 's/ doc//' $(@D)/Makefile
+endef
+
+SANE_BACKENDS_POST_CONFIGURE_HOOKS += SANE_BACKENDS_DISABLE_DOCS
+
$(eval $(autotools-package))
^ permalink raw reply related
* [Buildroot] [PATCH] sane-backends: fix documentation build failure
From: Peter Korsgaard @ 2012-12-09 20:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355063702-4716-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Disable documentation build, it seems to break with older
Gustavo> texlive/kpathsea versions, fixes:
Gustavo> http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/
Gustavo> Also switch to alioth mirror since the original tarball is
Gustavo> gone from the regular site when 1.0.23 was released.
Did you have a look at moving to 1.0.23 instead?
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] package/crosstool-ng: update to 1.17.0
From: Yann E. MORIN @ 2012-12-09 20:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87r4mzxad9.fsf@dell.be.48ers.dk>
Peter, All,
On Sunday 09 December 2012 Peter Korsgaard wrote:
> >>>>> "Carsten" == Carsten Schoenert <c.schoenert@gmail.com> writes:
>
> Carsten> From: Carsten Schoenert <c.schoenert@t-online.de>
> Carsten> Updating current crosstool-ng config files to 1.17.0
> Carsten> crosstool-ng.config-eglibc
> Carsten> crosstool-ng.config-glibc
> Carsten> crosstool-ng.config-uClibc
>
> Unfortunately it doesn't seem to build here (ppl compilation issue):
>
> [ERROR] /home/peko/source/buildroot/testctng/build/build-toolchain/.build/src/ppl-0.10.2/src/Interval.defs.hh:451:86: error: 'f_info' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
> [ALL ] In file included from /home/peko/source/buildroot/testctng/build/build-toolchain/.build/src/ppl-0.10.2/src/Interval.defs.hh:980:0
>
> Yann, Carsten - Any ideas? Googling around seems to suggest that this is
> related to a host-gcc 4.7.x issue, but people are quite likely to be
> using that nowadays, so what to do? Build with -fpermissive?
Yes, it requires -fpermissive to build with gcc-4.7.
Someone spoke about providing a patch to this effect on the crossgcc ML,
but nothing so far.
I am using a Debian squeeze that has a gcc-4.4, so I can't test it.
I'll try in a wheezy chroot soonish.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] bmon: needs mmu
From: Peter Korsgaard @ 2012-12-09 20:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355062407-19173-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Fixes
Gustavo> http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] bmon: needs mmu
From: Peter Korsgaard @ 2012-12-09 20:35 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=941963d258cac48f06c1be49169d81645c5e505c
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Fixes
http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/bmon/Config.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/package/bmon/Config.in b/package/bmon/Config.in
index 9692118..61d72f0 100644
--- a/package/bmon/Config.in
+++ b/package/bmon/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_BMON
bool "bmon"
depends on BR2_INET_IPV6
+ depends on BR2_USE_MMU # fork()
help
Linux bandwidth monitor
^ permalink raw reply related
* [Buildroot] [PATCH] libfuse: needs threads
From: Peter Korsgaard @ 2012-12-09 20:35 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355061941-10170-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> libfuse needs threads, fixes:
Gustavo> http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Gustavo> ---
Gustavo> package/libfuse/Config.in | 5 +++--
Gustavo> package/sshfs/Config.in | 1 +
Gustavo> package/unionfs/Config.in | 1 +
You forgot to update the sshfs/unionfs comments to match, but I fixed
that and committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] libfuse: needs threads
From: Peter Korsgaard @ 2012-12-09 20:34 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=b6e514692cf301edb6917c7b8cff486473bff9c4
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
libfuse needs threads, fixes:
http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c
[Peter: update sshfs/unionfs comments to match]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/libfuse/Config.in | 5 +++--
package/sshfs/Config.in | 5 +++--
package/unionfs/Config.in | 5 +++--
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/package/libfuse/Config.in b/package/libfuse/Config.in
index dffadf8..2e9b7dc 100644
--- a/package/libfuse/Config.in
+++ b/package/libfuse/Config.in
@@ -1,10 +1,11 @@
config BR2_PACKAGE_LIBFUSE
bool "libfuse"
depends on BR2_LARGEFILE
+ depends on BR2_TOOLCHAIN_HAS_THREADS
help
FUSE (Filesystem in UserSpacE)
http://fuse.sourceforge.net/
-comment "libfuse requires a toolchain with LARGEFILE support"
- depends on !BR2_LARGEFILE
+comment "libfuse requires a toolchain with LARGEFILE and threads support"
+ depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/sshfs/Config.in b/package/sshfs/Config.in
index 37188ba..d0cf932 100644
--- a/package/sshfs/Config.in
+++ b/package/sshfs/Config.in
@@ -7,10 +7,11 @@ config BR2_PACKAGE_SSHFS
select BR2_PACKAGE_OPENSSH
depends on BR2_LARGEFILE
depends on BR2_USE_WCHAR # glib2
+ depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
help
FUSE filesystem client based on the SSH File Transfer Protocol.
http://fuse.sourceforge.net/sshfs.html
-comment "sshfs requires a toolchain with LARGEFILE and WCHAR support"
- depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
+comment "sshfs requires a toolchain with LARGEFILE, WCHAR and threads support"
+ depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/unionfs/Config.in b/package/unionfs/Config.in
index a974c8c..92f1787 100644
--- a/package/unionfs/Config.in
+++ b/package/unionfs/Config.in
@@ -2,10 +2,11 @@ config BR2_PACKAGE_UNIONFS
bool "unionfs (FUSE)"
select BR2_PACKAGE_LIBFUSE
depends on BR2_LARGEFILE
+ depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
help
A userspace unionfs implementation.
http://podgorny.cz/moin/UnionFsFuse
-comment "unionfs requires a toolchain with LARGEFILE support"
- depends on !BR2_LARGEFILE
+comment "unionfs requires a toolchain with LARGEFILE and threads support"
+ depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
^ permalink raw reply related
* [Buildroot] [PATCH] ltrace: bump to version 0.7.2
From: Peter Korsgaard @ 2012-12-09 20:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355061456-7191-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Bump ltrace to version 0.7.2 which includes my ppc fixup patch.
Gustavo> Also exclude aarch64 since it's not supported, fixes
Gustavo> http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] ltrace: bump to version 0.7.2
From: Peter Korsgaard @ 2012-12-09 20:28 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=65dbff9f7c2ff504d05eb7ab7cf22efe1ab82c18
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Bump ltrace to version 0.7.2 which includes my ppc fixup patch.
Also exclude aarch64 since it's not supported, fixes
http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/ltrace/Config.in | 1 +
package/ltrace/ltrace-ppc-waitstatus.patch | 37 ----------------------------
package/ltrace/ltrace.mk | 2 +-
3 files changed, 2 insertions(+), 38 deletions(-)
diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in
index 9fd9aaa..c77108f 100644
--- a/package/ltrace/Config.in
+++ b/package/ltrace/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_LTRACE
bool "ltrace"
depends on !(BR2_avr32 || BR2_mips || BR2_sh || BR2_sh64 || BR2_xtensa)
+ depends on !BR2_aarch64
select BR2_PACKAGE_LIBELF
help
Debugging program which runs a specified command until it exits.
diff --git a/package/ltrace/ltrace-ppc-waitstatus.patch b/package/ltrace/ltrace-ppc-waitstatus.patch
deleted file mode 100644
index fa87ea4..0000000
--- a/package/ltrace/ltrace-ppc-waitstatus.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From faa8dfe0507b56fb8a7666e326177aec7f364071 Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Mon, 3 Dec 2012 11:12:08 -0300
-Subject: [PATCH] Fix build failure on ppc
-
-ppc/trace.c is using waitstatus bits without including the appropiate
-headers, leading to a build failure:
-
-libtool: link:
-/home/gustavoz/b/test/output/host/usr/bin/powerpc-buildroot-linux-uclibc-gcc
--Wall -Wsign-compare -Wfloat-equal -Wformat-security -pipe -Os -o ltrace
-main.o ./.libs/libltrace.a -lelf
-./.libs/libltrace.a(lt1-trace.o): In function `syscall_p':
-trace.c:(.text+0x28): undefined reference to `WIFSTOPPED'
-trace.c:(.text+0x40): undefined reference to `WSTOPSIG'
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
- sysdeps/linux-gnu/ppc/trace.c | 2 ++
- 1 files changed, 2 insertions(+), 0 deletions(-)
-
-diff --git a/sysdeps/linux-gnu/ppc/trace.c b/sysdeps/linux-gnu/ppc/trace.c
-index c152101..4357a1e 100644
---- a/sysdeps/linux-gnu/ppc/trace.c
-+++ b/sysdeps/linux-gnu/ppc/trace.c
-@@ -29,6 +29,8 @@
- #include <errno.h>
- #include <signal.h>
- #include <string.h>
-+#include <sys/types.h>
-+#include <sys/wait.h>
-
- #include "backend.h"
- #include "breakpoint.h"
---
-1.7.8.6
-
diff --git a/package/ltrace/ltrace.mk b/package/ltrace/ltrace.mk
index ca6d621..4b31690 100644
--- a/package/ltrace/ltrace.mk
+++ b/package/ltrace/ltrace.mk
@@ -4,7 +4,7 @@
#
#############################################################
-LTRACE_VERSION = 0.7.1
+LTRACE_VERSION = 0.7.2
LTRACE_SITE = http://alioth.debian.org/frs/download.php/3844
LTRACE_SOURCE = ltrace-$(LTRACE_VERSION).tar.bz2
LTRACE_DEPENDENCIES = libelf
^ permalink raw reply related
* [Buildroot] [PATCH] package/crosstool-ng: bumpimg default GCC version to 4.6.3
From: Peter Korsgaard @ 2012-12-09 20:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354968576-14889-2-git-send-email-c.schoenert@t-online.de>
>>>>> "Carsten" == Carsten Schoenert <c.schoenert@gmail.com> writes:
Carsten> From: Carsten Schoenert <c.schoenert@t-online.de>
Carsten> This bumps the GCC version from 4.4.6 to 4.6.3 to for
Carsten> *.config-eglibc
Carsten> *.config-glibc
Carsten> *.config-uClibc
Carsten> be equal to the default GCC setting in buildroot as well in addition to
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] libroxml: don't build docs
From: Peter Korsgaard @ 2012-12-09 20:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355060814-7448-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Don't build docs to avoid failures such as
Gustavo> http://autobuild.buildroot.net/results/3f1971472fe35a516b0f26ced477d33cb18280c9/
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] libroxml: don't build docs
From: Peter Korsgaard @ 2012-12-09 20:28 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=59795cc98067fe2730e50dd3687fd94b6b36a843
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Don't build docs to avoid failures such as
http://autobuild.buildroot.net/results/3f1971472fe35a516b0f26ced477d33cb18280c9/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/libroxml/libroxml.mk | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/package/libroxml/libroxml.mk b/package/libroxml/libroxml.mk
index d7ef6a4..6e690aa 100644
--- a/package/libroxml/libroxml.mk
+++ b/package/libroxml/libroxml.mk
@@ -30,4 +30,10 @@ define LIBROXML_CLEAN_CMDS
-$(MAKE) -C $(@D) clean
endef
+define LIBROXML_DISABLE_DOXYGEN
+ $(SED) 's:) doxy:):' $(@D)/Makefile
+endef
+
+LIBROXML_POST_PATCH_HOOKS += LIBROXML_DISABLE_DOXYGEN
+
$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] [PATCH] package/crosstool-ng: update to 1.17.0
From: Peter Korsgaard @ 2012-12-09 20:02 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354564065-24388-2-git-send-email-c.schoenert@t-online.de>
>>>>> "Carsten" == Carsten Schoenert <c.schoenert@gmail.com> writes:
Carsten> From: Carsten Schoenert <c.schoenert@t-online.de>
Carsten> Updating current crosstool-ng config files to 1.17.0
Carsten> crosstool-ng.config-eglibc
Carsten> crosstool-ng.config-glibc
Carsten> crosstool-ng.config-uClibc
Unfortunately it doesn't seem to build here (ppl compilation issue):
[ERROR] /home/peko/source/buildroot/testctng/build/build-toolchain/.build/src/ppl-0.10.2/src/Interval.defs.hh:451:86: error: 'f_info' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
[ALL ] In file included from /home/peko/source/buildroot/testctng/build/build-toolchain/.build/src/ppl-0.10.2/src/Interval.defs.hh:980:0
Yann, Carsten - Any ideas? Googling around seems to suggest that this is
related to a host-gcc 4.7.x issue, but people are quite likely to be
using that nowadays, so what to do? Build with -fpermissive?
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 0/51 v4] Add QEMU for runing on the target
From: Yann E. MORIN @ 2012-12-09 19:43 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121209194100.72987f2c@skate>
Thomas, All,
On Sunday 09 December 2012 Thomas Petazzoni wrote:
> On Sun, 9 Dec 2012 17:34:33 +0100, Yann E. MORIN wrote:
> > This patch series adds qemu as a package to run on the target.
> >
> > Although this may sound weird in a first place, I use it to build a
> > simple VM server.
>
> Do you have a public Git branch with all those patches, so that we can
> easily do some testing without having to apply manually all your
> patches?
For those interested, I've put up the series on gitorious:
git://gitorious.org/buildroot/buildroot.git
branch: yem-qemu
This branch already contains the removeal of the _AVAILABLE symbols,
spotted by Thomas.
I have no clue how to manage this, and I don't know (yet?) how I'll manage
to push updates to this branch, so do not expect any miracle! ;-)
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] libglib2: don't try to use DTrace/GCov/SystemTap for host build
From: Baruch Siach @ 2012-12-09 19:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355080604-27155-1-git-send-email-thomas.petazzoni@free-electrons.com>
Hi Thomas,
On Sun, Dec 09, 2012 at 08:16:44PM +0100, Thomas Petazzoni wrote:
> We really only need the host build of libglib2 for a few helper
> programs that are used for the target build of libglib2. Therefore,
> trying to use bells and whistles like DTrace, GCov and SystemTap is
> useful.
Not?
> And it is actually harmful, since it is causing build failures on the
> gcc110 PowerPC-based autobuilder that apparently has some
> DTrace-feature installed. This commit therefore fixes:
>
> http://autobuild.buildroot.org/results/1c62d1ce10937bd21f5afcb73782b939d10c2038/build-end.log
>
> Which has been polluting our autobuilder logs since several weeks now.
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
> package/libglib2/libglib2.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
> index a32cab2..4427431 100644
> --- a/package/libglib2/libglib2.mk
> +++ b/package/libglib2/libglib2.mk
> @@ -53,6 +53,9 @@ endif
> HOST_LIBGLIB2_CONF_OPT = \
> --disable-gtk-doc \
> --enable-debug=no \
> + --disable-dtrace \
> + --disable-systemtap \
> + --disable-gcov
>
> LIBGLIB2_DEPENDENCIES = host-pkgconf host-libglib2 libffi zlib $(if $(BR2_NEEDS_GETTEXT),gettext)
baruch
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
^ permalink raw reply
* [Buildroot] [PATCH v2] libglib2: don't try to use DTrace/GCov/SystemTap for host build
From: Thomas Petazzoni @ 2012-12-09 19:25 UTC (permalink / raw)
To: buildroot
We really only need the host build of libglib2 for a few helper
programs that are used for the target build of libglib2. Therefore,
trying to use bells and whistles like DTrace, GCov and SystemTap is
totally useless.
And it is actually harmful, since it is causing build failures on the
gcc110 PowerPC-based autobuilder that apparently has some
DTrace-feature installed. This commit therefore fixes:
http://autobuild.buildroot.org/results/1c62d1ce10937bd21f5afcb73782b939d10c2038/build-end.log
Which has been polluting our autobuilder logs since several weeks now.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
v2: fixed description, thanks to Samuel Martin for noticing
---
package/libglib2/libglib2.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
index a32cab2..4427431 100644
--- a/package/libglib2/libglib2.mk
+++ b/package/libglib2/libglib2.mk
@@ -53,6 +53,9 @@ endif
HOST_LIBGLIB2_CONF_OPT = \
--disable-gtk-doc \
--enable-debug=no \
+ --disable-dtrace \
+ --disable-systemtap \
+ --disable-gcov
LIBGLIB2_DEPENDENCIES = host-pkgconf host-libglib2 libffi zlib $(if $(BR2_NEEDS_GETTEXT),gettext)
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH] libglib2: don't try to use DTrace/GCov/SystemTap for host build
From: Thomas Petazzoni @ 2012-12-09 19:16 UTC (permalink / raw)
To: buildroot
We really only need the host build of libglib2 for a few helper
programs that are used for the target build of libglib2. Therefore,
trying to use bells and whistles like DTrace, GCov and SystemTap is
useful.
And it is actually harmful, since it is causing build failures on the
gcc110 PowerPC-based autobuilder that apparently has some
DTrace-feature installed. This commit therefore fixes:
http://autobuild.buildroot.org/results/1c62d1ce10937bd21f5afcb73782b939d10c2038/build-end.log
Which has been polluting our autobuilder logs since several weeks now.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libglib2/libglib2.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
index a32cab2..4427431 100644
--- a/package/libglib2/libglib2.mk
+++ b/package/libglib2/libglib2.mk
@@ -53,6 +53,9 @@ endif
HOST_LIBGLIB2_CONF_OPT = \
--disable-gtk-doc \
--enable-debug=no \
+ --disable-dtrace \
+ --disable-systemtap \
+ --disable-gcov
LIBGLIB2_DEPENDENCIES = host-pkgconf host-libglib2 libffi zlib $(if $(BR2_NEEDS_GETTEXT),gettext)
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 21/51] package/libedit2: new package
From: Thomas Petazzoni @ 2012-12-09 18:52 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355070924-8009-22-git-send-email-yann.morin.1998@free.fr>
Dear Yann E. MORIN,
On Sun, 9 Dec 2012 17:34:54 +0100, Yann E. MORIN wrote:
> +LIBEDIT2_DEPENDENCIES = host-pmake libbsd ncurses
If I'm correct, this package is the only one that needs host-pmake, no?
If so, then seeing how simple libedit seems to be, I think a patch
adding a proper configure.ac + Makefile.am to libedit2, making its
build system correct, and independent of pmake, would be in fact a lot
easier.
It would avoid the huge pmake package that has gazillions of patches,
and would avoid the horrible mess in libedit2.mk to get the
installation step correct.
Since there has been no release of libedit2 since 2008, I don't expect
the patch to migrate to the autotools to become obsolete too fast :-)
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 20/51] package/libbsd: new package
From: Thomas Petazzoni @ 2012-12-09 18:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355070924-8009-21-git-send-email-yann.morin.1998@free.fr>
Dear Yann E. MORIN,
On Sun, 9 Dec 2012 17:34:53 +0100, Yann E. MORIN wrote:
> +LIBBSD_AUTORECONF = YES
> +LIBBSD_AUTORECONF_OPT = -f -i
Justification for AUTORECONF?
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 13/51] package/spice: new package
From: Thomas Petazzoni @ 2012-12-09 18:43 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355070924-8009-14-git-send-email-yann.morin.1998@free.fr>
Dear Yann E. MORIN,
On Sun, 9 Dec 2012 17:34:46 +0100, Yann E. MORIN wrote:
> +# We need to tweak spice.pc because it /forgets/ (for static linking) that
> +# it should link against libz and libjpeg. libz is pkg-config-aware, while
> +# libjpeg isn't, hence the two-line tweak
> +define SPICE_POST_INSTALL_STAGING_FIX_PC
> + $(SED) 's/^\(Requires.private:.*\)$$/\1 zlib/; s/^\(Libs.private:.*\)$$/\1 -ljpeg/;' \
> + "$(STAGING_DIR)/usr/lib/pkgconfig/spice-server.pc"
> +endef
> +SPICE_POST_INSTALL_STAGING_HOOKS += SPICE_POST_INSTALL_STAGING_FIX_PC
Do you think it's possible to replace this by a patch that could be
upstreamed?
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 12/51] package/slirp: new package
From: Thomas Petazzoni @ 2012-12-09 18:42 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355070924-8009-13-git-send-email-yann.morin.1998@free.fr>
Dear Yann E. MORIN,
On Sun, 9 Dec 2012 17:34:45 +0100, Yann E. MORIN wrote:
> +# Note: The license file 'COPYRIGHT' is missing from the sources,
> +# although some files refer to it.
> +SLIRP_INSTALL_STAGING = YES
> +SLIRP_AUTORECONF = YES
Justification for the _AUTORECONF=YES here?
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 0/51 v4] Add QEMU for runing on the target
From: Thomas Petazzoni @ 2012-12-09 18:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>
Dear Yann E. MORIN,
On Sun, 9 Dec 2012 17:34:33 +0100, Yann E. MORIN wrote:
> This patch series adds qemu as a package to run on the target.
>
> Although this may sound weird in a first place, I use it to build a
> simple VM server.
Do you have a public Git branch with all those patches, so that we can
easily do some testing without having to apply manually all your
patches?
Thanks,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] package/crosstool-ng: bumpimg default GCC version to 4.6.3
From: Peter Korsgaard @ 2012-12-09 18:27 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=5c22945d7560c4a5cf184441b8bba7e48c5d099e
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
This bumps the GCC version from 4.4.6 to 4.6.3 to for
*.config-eglibc
*.config-glibc
*.config-uClibc
be equal to the default GCC setting in buildroot as well in addition to
commit b855154ee8683e87afa08c6cc50b716d22879922.
Signed-off-by: Carsten Schoenert <c.schoenert@t-online.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
.../crosstool-ng.config-eglibc | 26 ++++++++++++++++----
.../crosstool-ng.config-glibc | 26 ++++++++++++++++----
.../crosstool-ng.config-uClibc | 26 ++++++++++++++++----
3 files changed, 63 insertions(+), 15 deletions(-)
diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc b/toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc
index 1b523ec..11eb602 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
# crosstool-NG 1.17.0 Configuration
-# Mon Dec 3 20:10:26 2012
+# Sat Dec 8 12:57:07 2012
#
CT_CONFIGURE_has_xz=y
CT_CONFIGURE_has_svn=y
@@ -265,10 +265,10 @@ CT_BINUTILS_EXTRA_CONFIG_ARRAY=""
# C compiler
#
CT_CC="gcc"
-CT_CC_VERSION="4.4.6"
+CT_CC_VERSION="4.6.3"
CT_CC_gcc=y
# CT_CC_V_4_7_2 is not set
-# CT_CC_V_4_6_3 is not set
+CT_CC_V_4_6_3=y
# CT_CC_V_4_6_2 is not set
# CT_CC_V_4_6_1 is not set
# CT_CC_V_4_6_0 is not set
@@ -277,7 +277,7 @@ CT_CC_gcc=y
# CT_CC_V_4_5_1 is not set
# CT_CC_V_4_5_0 is not set
# CT_CC_V_4_4_7 is not set
-CT_CC_V_4_4_6=y
+# CT_CC_V_4_4_6 is not set
# CT_CC_V_4_4_5 is not set
# CT_CC_V_4_4_4 is not set
# CT_CC_V_4_4_3 is not set
@@ -294,12 +294,18 @@ CT_CC_V_4_4_6=y
# CT_CC_V_4_2_2 is not set
CT_CC_GCC_4_2_or_later=y
CT_CC_GCC_4_3_or_later=y
-CT_CC_GCC_4_4=y
CT_CC_GCC_4_4_or_later=y
+CT_CC_GCC_4_5_or_later=y
+CT_CC_GCC_4_6=y
+CT_CC_GCC_4_6_or_later=y
CT_CC_GCC_HAS_GRAPHITE=y
+CT_CC_GCC_HAS_LTO=y
CT_CC_GCC_HAS_PKGVERSION_BUGURL=y
+CT_CC_GCC_HAS_BUILD_ID=y
CT_CC_GCC_USE_GMP_MPFR=y
CT_CC_GCC_USE_PPL_CLOOG=y
+CT_CC_GCC_USE_MPC=y
+CT_CC_GCC_HAS_LIBQUADMATH=y
# CT_CC_LANG_FORTRAN is not set
CT_CC_SUPPORT_CXX=y
CT_CC_SUPPORT_FORTRAN=y
@@ -326,6 +332,7 @@ CT_CC_STATIC_LIBSTDCXX=y
# Optimisation features
#
CT_CC_GCC_USE_GRAPHITE=y
+CT_CC_GCC_USE_LTO=y
#
# Settings for libraries running on target
@@ -334,6 +341,7 @@ CT_CC_GCC_ENABLE_TARGET_OPTSPACE=y
# CT_CC_GCC_LIBMUDFLAP is not set
# CT_CC_GCC_LIBGOMP is not set
# CT_CC_GCC_LIBSSP is not set
+# CT_CC_GCC_LIBQUADMATH is not set
#
# Misc. obscure options.
@@ -342,6 +350,7 @@ CT_CC_CXA_ATEXIT=y
# CT_CC_GCC_DISABLE_PCH is not set
CT_CC_GCC_SJLJ_EXCEPTIONS=m
CT_CC_GCC_LDBL_128=m
+# CT_CC_GCC_BUILD_ID is not set
#
# C-library
@@ -445,11 +454,13 @@ CT_GMP_NEEDED=y
CT_MPFR_NEEDED=y
CT_PPL_NEEDED=y
CT_CLOOG_NEEDED=y
+CT_MPC_NEEDED=y
CT_COMPLIBS=y
CT_GMP=y
CT_MPFR=y
CT_PPL=y
CT_CLOOG=y
+CT_MPC=y
# CT_GMP_V_5_0_2 is not set
# CT_GMP_V_5_0_1 is not set
CT_GMP_V_4_3_2=y
@@ -475,6 +486,11 @@ CT_CLOOG_V_0_15_9=y
# CT_CLOOG_V_0_15_7 is not set
# CT_CLOOG_V_0_15_6 is not set
CT_CLOOG_VERSION="0.15.9"
+CT_MPC_V_0_9=y
+# CT_MPC_V_0_8_2 is not set
+# CT_MPC_V_0_8_1 is not set
+# CT_MPC_V_0_7 is not set
+CT_MPC_VERSION="0.9"
#
# Companion libraries common options
diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc b/toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc
index 026c7fd..c30a115 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
# crosstool-NG 1.17.0 Configuration
-# Mon Dec 3 20:16:52 2012
+# Sat Dec 8 12:56:02 2012
#
CT_CONFIGURE_has_xz=y
CT_CONFIGURE_has_svn=y
@@ -265,10 +265,10 @@ CT_BINUTILS_EXTRA_CONFIG_ARRAY=""
# C compiler
#
CT_CC="gcc"
-CT_CC_VERSION="4.4.6"
+CT_CC_VERSION="4.6.3"
CT_CC_gcc=y
# CT_CC_V_4_7_2 is not set
-# CT_CC_V_4_6_3 is not set
+CT_CC_V_4_6_3=y
# CT_CC_V_4_6_2 is not set
# CT_CC_V_4_6_1 is not set
# CT_CC_V_4_6_0 is not set
@@ -277,7 +277,7 @@ CT_CC_gcc=y
# CT_CC_V_4_5_1 is not set
# CT_CC_V_4_5_0 is not set
# CT_CC_V_4_4_7 is not set
-CT_CC_V_4_4_6=y
+# CT_CC_V_4_4_6 is not set
# CT_CC_V_4_4_5 is not set
# CT_CC_V_4_4_4 is not set
# CT_CC_V_4_4_3 is not set
@@ -294,12 +294,18 @@ CT_CC_V_4_4_6=y
# CT_CC_V_4_2_2 is not set
CT_CC_GCC_4_2_or_later=y
CT_CC_GCC_4_3_or_later=y
-CT_CC_GCC_4_4=y
CT_CC_GCC_4_4_or_later=y
+CT_CC_GCC_4_5_or_later=y
+CT_CC_GCC_4_6=y
+CT_CC_GCC_4_6_or_later=y
CT_CC_GCC_HAS_GRAPHITE=y
+CT_CC_GCC_HAS_LTO=y
CT_CC_GCC_HAS_PKGVERSION_BUGURL=y
+CT_CC_GCC_HAS_BUILD_ID=y
CT_CC_GCC_USE_GMP_MPFR=y
CT_CC_GCC_USE_PPL_CLOOG=y
+CT_CC_GCC_USE_MPC=y
+CT_CC_GCC_HAS_LIBQUADMATH=y
# CT_CC_LANG_FORTRAN is not set
CT_CC_SUPPORT_CXX=y
CT_CC_SUPPORT_FORTRAN=y
@@ -326,6 +332,7 @@ CT_CC_STATIC_LIBSTDCXX=y
# Optimisation features
#
CT_CC_GCC_USE_GRAPHITE=y
+CT_CC_GCC_USE_LTO=y
#
# Settings for libraries running on target
@@ -334,6 +341,7 @@ CT_CC_GCC_ENABLE_TARGET_OPTSPACE=y
# CT_CC_GCC_LIBMUDFLAP is not set
# CT_CC_GCC_LIBGOMP is not set
# CT_CC_GCC_LIBSSP is not set
+# CT_CC_GCC_LIBQUADMATH is not set
#
# Misc. obscure options.
@@ -342,6 +350,7 @@ CT_CC_CXA_ATEXIT=y
# CT_CC_GCC_DISABLE_PCH is not set
CT_CC_GCC_SJLJ_EXCEPTIONS=m
CT_CC_GCC_LDBL_128=m
+# CT_CC_GCC_BUILD_ID is not set
#
# C-library
@@ -434,11 +443,13 @@ CT_GMP_NEEDED=y
CT_MPFR_NEEDED=y
CT_PPL_NEEDED=y
CT_CLOOG_NEEDED=y
+CT_MPC_NEEDED=y
CT_COMPLIBS=y
CT_GMP=y
CT_MPFR=y
CT_PPL=y
CT_CLOOG=y
+CT_MPC=y
# CT_GMP_V_5_0_2 is not set
# CT_GMP_V_5_0_1 is not set
CT_GMP_V_4_3_2=y
@@ -464,6 +475,11 @@ CT_CLOOG_V_0_15_9=y
# CT_CLOOG_V_0_15_7 is not set
# CT_CLOOG_V_0_15_6 is not set
CT_CLOOG_VERSION="0.15.9"
+CT_MPC_V_0_9=y
+# CT_MPC_V_0_8_2 is not set
+# CT_MPC_V_0_8_1 is not set
+# CT_MPC_V_0_7 is not set
+CT_MPC_VERSION="0.9"
#
# Companion libraries common options
diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc b/toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc
index 8ad481f..e93128b 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
# crosstool-NG 1.17.0 Configuration
-# Mon Dec 3 20:17:58 2012
+# Sat Dec 8 12:50:22 2012
#
CT_CONFIGURE_has_xz=y
CT_CONFIGURE_has_svn=y
@@ -264,10 +264,10 @@ CT_BINUTILS_EXTRA_CONFIG_ARRAY=""
# C compiler
#
CT_CC="gcc"
-CT_CC_VERSION="4.4.6"
+CT_CC_VERSION="4.6.3"
CT_CC_gcc=y
# CT_CC_V_4_7_2 is not set
-# CT_CC_V_4_6_3 is not set
+CT_CC_V_4_6_3=y
# CT_CC_V_4_6_2 is not set
# CT_CC_V_4_6_1 is not set
# CT_CC_V_4_6_0 is not set
@@ -276,7 +276,7 @@ CT_CC_gcc=y
# CT_CC_V_4_5_1 is not set
# CT_CC_V_4_5_0 is not set
# CT_CC_V_4_4_7 is not set
-CT_CC_V_4_4_6=y
+# CT_CC_V_4_4_6 is not set
# CT_CC_V_4_4_5 is not set
# CT_CC_V_4_4_4 is not set
# CT_CC_V_4_4_3 is not set
@@ -293,12 +293,18 @@ CT_CC_V_4_4_6=y
# CT_CC_V_4_2_2 is not set
CT_CC_GCC_4_2_or_later=y
CT_CC_GCC_4_3_or_later=y
-CT_CC_GCC_4_4=y
CT_CC_GCC_4_4_or_later=y
+CT_CC_GCC_4_5_or_later=y
+CT_CC_GCC_4_6=y
+CT_CC_GCC_4_6_or_later=y
CT_CC_GCC_HAS_GRAPHITE=y
+CT_CC_GCC_HAS_LTO=y
CT_CC_GCC_HAS_PKGVERSION_BUGURL=y
+CT_CC_GCC_HAS_BUILD_ID=y
CT_CC_GCC_USE_GMP_MPFR=y
CT_CC_GCC_USE_PPL_CLOOG=y
+CT_CC_GCC_USE_MPC=y
+CT_CC_GCC_HAS_LIBQUADMATH=y
# CT_CC_LANG_FORTRAN is not set
CT_CC_SUPPORT_CXX=y
CT_CC_SUPPORT_FORTRAN=y
@@ -325,6 +331,7 @@ CT_CC_STATIC_LIBSTDCXX=y
# Optimisation features
#
CT_CC_GCC_USE_GRAPHITE=y
+CT_CC_GCC_USE_LTO=y
#
# Settings for libraries running on target
@@ -333,6 +340,7 @@ CT_CC_GCC_ENABLE_TARGET_OPTSPACE=y
# CT_CC_GCC_LIBMUDFLAP is not set
# CT_CC_GCC_LIBGOMP is not set
# CT_CC_GCC_LIBSSP is not set
+# CT_CC_GCC_LIBQUADMATH is not set
#
# Misc. obscure options.
@@ -341,6 +349,7 @@ CT_CC_CXA_ATEXIT=y
# CT_CC_GCC_DISABLE_PCH is not set
CT_CC_GCC_SJLJ_EXCEPTIONS=m
CT_CC_GCC_LDBL_128=m
+# CT_CC_GCC_BUILD_ID is not set
#
# C-library
@@ -416,11 +425,13 @@ CT_GMP_NEEDED=y
CT_MPFR_NEEDED=y
CT_PPL_NEEDED=y
CT_CLOOG_NEEDED=y
+CT_MPC_NEEDED=y
CT_COMPLIBS=y
CT_GMP=y
CT_MPFR=y
CT_PPL=y
CT_CLOOG=y
+CT_MPC=y
# CT_GMP_V_5_0_2 is not set
# CT_GMP_V_5_0_1 is not set
CT_GMP_V_4_3_2=y
@@ -446,6 +457,11 @@ CT_CLOOG_V_0_15_9=y
# CT_CLOOG_V_0_15_7 is not set
# CT_CLOOG_V_0_15_6 is not set
CT_CLOOG_VERSION="0.15.9"
+CT_MPC_V_0_9=y
+# CT_MPC_V_0_8_2 is not set
+# CT_MPC_V_0_8_1 is not set
+# CT_MPC_V_0_7 is not set
+CT_MPC_VERSION="0.9"
#
# Companion libraries common options
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox