Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3] cppunit: Added package
@ 2014-10-15 20:22 Sebastien Bourdelin
  2014-10-16  8:15 ` Jerzy Grzegorek
  2014-10-16  8:51 ` Arnout Vandecappelle
  0 siblings, 2 replies; 8+ messages in thread
From: Sebastien Bourdelin @ 2014-10-15 20:22 UTC (permalink / raw)
  To: buildroot

CppUnit is the C++ port of the famous JUnit framework for unit testing.
Test output is in XML or text format for automatic testing and GUI
based for supervised tests.

http://www.freedesktop.org/wiki/Software/cppunit/

Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
---
Changes v2 -> v3:
 - use the release tarball instead of the git repository (suggested by
		 arnout at mind.be)
 - fix the Licence (suggested by arnout at mind.be)
 - add upstream and locally compute .hash (suggested by
		 arnout at mind.be)
---
Changes v1 -> v2:
 - used AUTORECONF option (suggested by romain.naour at openwide.fr)
 - removed useless CONFIGURE_CMDS (suggested by romain.naour at openwide.fr)
---
 package/Config.in            |  1 +
 package/cppunit/Config.in    | 12 ++++++++++++
 package/cppunit/cppunit.hash |  5 +++++
 package/cppunit/cppunit.mk   | 14 ++++++++++++++
 4 files changed, 32 insertions(+)
 create mode 100644 package/cppunit/Config.in
 create mode 100644 package/cppunit/cppunit.hash
 create mode 100644 package/cppunit/cppunit.mk

diff --git a/package/Config.in b/package/Config.in
index 93e148d..8d6e047 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -840,6 +840,7 @@ menu "Other"
 	source "package/clapack/Config.in"
 	source "package/classpath/Config.in"
 	source "package/cppcms/Config.in"
+	source "package/cppunit/Config.in"
 	source "package/eigen/Config.in"
 	source "package/elfutils/Config.in"
 	source "package/fftw/Config.in"
diff --git a/package/cppunit/Config.in b/package/cppunit/Config.in
new file mode 100644
index 0000000..91700b8
--- /dev/null
+++ b/package/cppunit/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_CPPUNIT
+	bool "cppunit"
+	depends on BR2_INSTALL_LIBSTDCPP
+	help
+	  CppUnit is the C++ port of the famous JUnit framework for unit testing.
+	  Test output is in XML or text format for automatic testing and GUI
+	  based for supervised tests.
+
+	  http://www.freedesktop.org/wiki/Software/cppunit/
+
+comment "cppunit needs a toolchain w/ C++"
+	depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/cppunit/cppunit.hash b/package/cppunit/cppunit.hash
new file mode 100644
index 0000000..ad45455
--- /dev/null
+++ b/package/cppunit/cppunit.hash
@@ -0,0 +1,5 @@
+# hash from: http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz:
+md5	d1c6bdd5a76c66d2c38331e2d287bc01  cppunit-1.13.2.tar.gz
+
+# no upstream hash for the following:
+sha512	8f4be569f321d577cec31931f49f4df143bc94e283605509b6ea50c60690aa91a2aed940e7eebd4b2413a4218f9a6c3978d312d8e587eab040283c6563846ecd  cppunit-1.13.2.tar.gz
diff --git a/package/cppunit/cppunit.mk b/package/cppunit/cppunit.mk
new file mode 100644
index 0000000..89268b7
--- /dev/null
+++ b/package/cppunit/cppunit.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# cppunit
+#
+################################################################################
+
+CPPUNIT_VERSION = cppunit-1.13.2
+CPPUNIT_SOURCE = $(CPPUNIT_VERSION).tar.gz
+CPPUNIT_SITE = http://dev-www.libreoffice.org/src
+CPPUNIT_INSTALL_STAGING = YES
+CPPUNIT_LICENSE = LGPLv2.1+
+CPPUNIT_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
-- 
1.8.3.4

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-15 20:22 [Buildroot] [PATCH v3] cppunit: Added package Sebastien Bourdelin
@ 2014-10-16  8:15 ` Jerzy Grzegorek
  2014-10-16  8:51 ` Arnout Vandecappelle
  1 sibling, 0 replies; 8+ messages in thread
From: Jerzy Grzegorek @ 2014-10-16  8:15 UTC (permalink / raw)
  To: buildroot

Hi Sebastien,

> CppUnit is the C++ port of the famous JUnit framework for unit testing.
> Test output is in XML or text format for automatic testing and GUI
> based for supervised tests.
>
> http://www.freedesktop.org/wiki/Software/cppunit/
>
> Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
> ---
> Changes v2 -> v3:
>   - use the release tarball instead of the git repository (suggested by
> 		 arnout at mind.be)
>   - fix the Licence (suggested by arnout at mind.be)
>   - add upstream and locally compute .hash (suggested by
> 		 arnout at mind.be)
> ---
> Changes v1 -> v2:
>   - used AUTORECONF option (suggested by romain.naour at openwide.fr)
>   - removed useless CONFIGURE_CMDS (suggested by romain.naour at openwide.fr)
> ---
>   package/Config.in            |  1 +
>   package/cppunit/Config.in    | 12 ++++++++++++
>   package/cppunit/cppunit.hash |  5 +++++
>   package/cppunit/cppunit.mk   | 14 ++++++++++++++
>   4 files changed, 32 insertions(+)
>   create mode 100644 package/cppunit/Config.in
>   create mode 100644 package/cppunit/cppunit.hash
>   create mode 100644 package/cppunit/cppunit.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 93e148d..8d6e047 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -840,6 +840,7 @@ menu "Other"
>   	source "package/clapack/Config.in"
>   	source "package/classpath/Config.in"
>   	source "package/cppcms/Config.in"
> +	source "package/cppunit/Config.in"
>   	source "package/eigen/Config.in"
>   	source "package/elfutils/Config.in"
>   	source "package/fftw/Config.in"
> diff --git a/package/cppunit/Config.in b/package/cppunit/Config.in
> new file mode 100644
> index 0000000..91700b8
> --- /dev/null
> +++ b/package/cppunit/Config.in
> @@ -0,0 +1,12 @@
> +config BR2_PACKAGE_CPPUNIT
> +	bool "cppunit"
> +	depends on BR2_INSTALL_LIBSTDCPP
> +	help
> +	  CppUnit is the C++ port of the famous JUnit framework for unit testing.
> +	  Test output is in XML or text format for automatic testing and GUI
> +	  based for supervised tests.
> +
> +	  http://www.freedesktop.org/wiki/Software/cppunit/
> +
> +comment "cppunit needs a toolchain w/ C++"
> +	depends on !BR2_INSTALL_LIBSTDCPP
> diff --git a/package/cppunit/cppunit.hash b/package/cppunit/cppunit.hash
> new file mode 100644
> index 0000000..ad45455
> --- /dev/null
> +++ b/package/cppunit/cppunit.hash
> @@ -0,0 +1,5 @@
> +# hash from: http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz:
> +md5	d1c6bdd5a76c66d2c38331e2d287bc01  cppunit-1.13.2.tar.gz
> +
> +# no upstream hash for the following:
> +sha512	8f4be569f321d577cec31931f49f4df143bc94e283605509b6ea50c60690aa91a2aed940e7eebd4b2413a4218f9a6c3978d312d8e587eab040283c6563846ecd  cppunit-1.13.2.tar.gz
> diff --git a/package/cppunit/cppunit.mk b/package/cppunit/cppunit.mk
> new file mode 100644
> index 0000000..89268b7
> --- /dev/null
> +++ b/package/cppunit/cppunit.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# cppunit
> +#
> +################################################################################
> +
> +CPPUNIT_VERSION = cppunit-1.13.2

This should be

CPPUNIT_VERSION = 1.13.2

and ...

> +CPPUNIT_SOURCE = $(CPPUNIT_VERSION).tar.gz

that should be

CPPUNIT_SOURCE = cppunit-$(CPPUNIT_VERSION).tar.gz

but because this is the default value of <PKG>_SOURCE variable,
so this line is not needed.

Regards,
Jerzy

> +CPPUNIT_SITE = http://dev-www.libreoffice.org/src
> +CPPUNIT_INSTALL_STAGING = YES
> +CPPUNIT_LICENSE = LGPLv2.1+
> +CPPUNIT_LICENSE_FILES = COPYING
> +
> +$(eval $(autotools-package))

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-15 20:22 [Buildroot] [PATCH v3] cppunit: Added package Sebastien Bourdelin
  2014-10-16  8:15 ` Jerzy Grzegorek
@ 2014-10-16  8:51 ` Arnout Vandecappelle
  2014-10-16  9:08   ` Thomas Petazzoni
  1 sibling, 1 reply; 8+ messages in thread
From: Arnout Vandecappelle @ 2014-10-16  8:51 UTC (permalink / raw)
  To: buildroot

 Sorry, still a few details :-)

On 15/10/14 22:22, Sebastien Bourdelin wrote:
> CppUnit is the C++ port of the famous JUnit framework for unit testing.
> Test output is in XML or text format for automatic testing and GUI
> based for supervised tests.
> 
> http://www.freedesktop.org/wiki/Software/cppunit/
> 
> Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
> ---
> Changes v2 -> v3:
>  - use the release tarball instead of the git repository (suggested by
> 		 arnout at mind.be)
>  - fix the Licence (suggested by arnout at mind.be)
>  - add upstream and locally compute .hash (suggested by
> 		 arnout at mind.be)
> ---
> Changes v1 -> v2:
>  - used AUTORECONF option (suggested by romain.naour at openwide.fr)
>  - removed useless CONFIGURE_CMDS (suggested by romain.naour at openwide.fr)

 Excellent changelog BTW!

> ---
>  package/Config.in            |  1 +
>  package/cppunit/Config.in    | 12 ++++++++++++
>  package/cppunit/cppunit.hash |  5 +++++
>  package/cppunit/cppunit.mk   | 14 ++++++++++++++
>  4 files changed, 32 insertions(+)
>  create mode 100644 package/cppunit/Config.in
>  create mode 100644 package/cppunit/cppunit.hash
>  create mode 100644 package/cppunit/cppunit.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index 93e148d..8d6e047 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -840,6 +840,7 @@ menu "Other"
>  	source "package/clapack/Config.in"
>  	source "package/classpath/Config.in"
>  	source "package/cppcms/Config.in"
> +	source "package/cppunit/Config.in"

 I didn't look at this before, but:

 I think this fits better in the Development tools menu, even though it's a
library. I'm not 100% sure, though, so it's up to you.

>  	source "package/eigen/Config.in"
>  	source "package/elfutils/Config.in"
>  	source "package/fftw/Config.in"
> diff --git a/package/cppunit/Config.in b/package/cppunit/Config.in
> new file mode 100644
> index 0000000..91700b8
> --- /dev/null
> +++ b/package/cppunit/Config.in
> @@ -0,0 +1,12 @@
> +config BR2_PACKAGE_CPPUNIT
> +	bool "cppunit"
> +	depends on BR2_INSTALL_LIBSTDCPP
> +	help
> +	  CppUnit is the C++ port of the famous JUnit framework for unit testing.
> +	  Test output is in XML or text format for automatic testing and GUI
> +	  based for supervised tests.
> +
> +	  http://www.freedesktop.org/wiki/Software/cppunit/
> +
> +comment "cppunit needs a toolchain w/ C++"
> +	depends on !BR2_INSTALL_LIBSTDCPP
> diff --git a/package/cppunit/cppunit.hash b/package/cppunit/cppunit.hash
> new file mode 100644
> index 0000000..ad45455
> --- /dev/null
> +++ b/package/cppunit/cppunit.hash
> @@ -0,0 +1,5 @@
> +# hash from: http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz:

 We already know where the source comes from; instead, you should refer to the
URL that gives the hash:
http://www.freedesktop.org/wiki/Software/cppunit/

> +md5	d1c6bdd5a76c66d2c38331e2d287bc01  cppunit-1.13.2.tar.gz

 I verified that this is correct.

> +
> +# no upstream hash for the following:
> +sha512	8f4be569f321d577cec31931f49f4df143bc94e283605509b6ea50c60690aa91a2aed940e7eebd4b2413a4218f9a6c3978d312d8e587eab040283c6563846ecd  cppunit-1.13.2.tar.gz
> diff --git a/package/cppunit/cppunit.mk b/package/cppunit/cppunit.mk
> new file mode 100644
> index 0000000..89268b7
> --- /dev/null
> +++ b/package/cppunit/cppunit.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# cppunit
> +#
> +################################################################################
> +
> +CPPUNIT_VERSION = cppunit-1.13.2

 No, the version is 1.13.2

> +CPPUNIT_SOURCE = $(CPPUNIT_VERSION).tar.gz

 Once the VERSION has been corrected, this is the default so it's not needed to
give the CPPUNIT_SOURCE.

> +CPPUNIT_SITE = http://dev-www.libreoffice.org/src
> +CPPUNIT_INSTALL_STAGING = YES
> +CPPUNIT_LICENSE = LGPLv2.1+
> +CPPUNIT_LICENSE_FILES = COPYING
> +
> +$(eval $(autotools-package))


 Unfortunately, it fails to build for platforms without shared libraries (e.g.
blackfin FLAT). Probably easy to fix (seems to be a case of some forgotten
#ifdef's), but it's easier to just add

	depends on !BR2_BINFMT_FLAT


 Regards,
 Arnout


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-16  8:51 ` Arnout Vandecappelle
@ 2014-10-16  9:08   ` Thomas Petazzoni
  2014-10-16  9:42     ` Arnout Vandecappelle
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2014-10-16  9:08 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

On Thu, 16 Oct 2014 10:51:28 +0200, Arnout Vandecappelle wrote:

>  Unfortunately, it fails to build for platforms without shared libraries (e.g.
> blackfin FLAT). Probably easy to fix (seems to be a case of some forgotten
> #ifdef's), but it's easier to just add
> 
> 	depends on !BR2_BINFMT_FLAT

No: if it's really related to shared libraries, then it should be a
depends on !BR2_PREFER_STATIC_LIB.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-16  9:08   ` Thomas Petazzoni
@ 2014-10-16  9:42     ` Arnout Vandecappelle
  2014-10-16  9:53       ` Thomas Petazzoni
  0 siblings, 1 reply; 8+ messages in thread
From: Arnout Vandecappelle @ 2014-10-16  9:42 UTC (permalink / raw)
  To: buildroot

On 16/10/14 11:08, Thomas Petazzoni wrote:
> Dear Arnout Vandecappelle,
> 
> On Thu, 16 Oct 2014 10:51:28 +0200, Arnout Vandecappelle wrote:
> 
>>  Unfortunately, it fails to build for platforms without shared libraries (e.g.
>> blackfin FLAT). Probably easy to fix (seems to be a case of some forgotten
>> #ifdef's), but it's easier to just add
>>
>> 	depends on !BR2_BINFMT_FLAT
> 
> No: if it's really related to shared libraries, then it should be a
> depends on !BR2_PREFER_STATIC_LIB.

 Yeah, you're probably right. It does build with PREFER_STATIC on other
architectures, but that's just because there still is a dlopen in staging so it
still sets CPPUNIT_HAVE_LIBDL and then it builds "correctly". But we most likely
have many many packages that seem to build correctly with STATIC but actually
still use shared libraries or dlopen. We probably should remove ld.so and
libdl.* from staging when building static.

 So yes, better make it !STATIC, with a comment explaining that it doesn't
correctly detect the static situation and that there is a trivial build failure
when CPPUNIT_HAVE_LIBDL is disabled.

 Regards,
 Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-16  9:42     ` Arnout Vandecappelle
@ 2014-10-16  9:53       ` Thomas Petazzoni
  2014-10-16 10:11         ` Arnout Vandecappelle
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2014-10-16  9:53 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

On Thu, 16 Oct 2014 11:42:45 +0200, Arnout Vandecappelle wrote:

> > No: if it's really related to shared libraries, then it should be a
> > depends on !BR2_PREFER_STATIC_LIB.
> 
>  Yeah, you're probably right. It does build with PREFER_STATIC on other
> architectures, but that's just because there still is a dlopen in staging so it
> still sets CPPUNIT_HAVE_LIBDL and then it builds "correctly". But we most likely
> have many many packages that seem to build correctly with STATIC but actually
> still use shared libraries or dlopen. We probably should remove ld.so and
> libdl.* from staging when building static.

Well, for packages that do build on noMMU platforms, we do catch such
issues thanks to the bfin-uclinux toolchain configuration that is used
on the autobuilders. But for those other packages that don't build on
noMMU, we indeed don't check properly if we're able to do a pure static
build.

Alexey has sent a patch to remove HAVE_SHARED from the uClibc
configuration when BR2_PREFER_STATIC_LIB is enabled. Maybe this will
get rid of ld.so, libdl and so on? I haven't tested yet.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-16  9:53       ` Thomas Petazzoni
@ 2014-10-16 10:11         ` Arnout Vandecappelle
  2014-10-16 15:37           ` Sebastien Bourdelin
  0 siblings, 1 reply; 8+ messages in thread
From: Arnout Vandecappelle @ 2014-10-16 10:11 UTC (permalink / raw)
  To: buildroot

On 16/10/14 11:53, Thomas Petazzoni wrote:
> Dear Arnout Vandecappelle,
> 
> On Thu, 16 Oct 2014 11:42:45 +0200, Arnout Vandecappelle wrote:
> 
>>> No: if it's really related to shared libraries, then it should be a
>>> depends on !BR2_PREFER_STATIC_LIB.
>>
>>  Yeah, you're probably right. It does build with PREFER_STATIC on other
>> architectures, but that's just because there still is a dlopen in staging so it
>> still sets CPPUNIT_HAVE_LIBDL and then it builds "correctly". But we most likely
>> have many many packages that seem to build correctly with STATIC but actually
>> still use shared libraries or dlopen. We probably should remove ld.so and
>> libdl.* from staging when building static.
> 
> Well, for packages that do build on noMMU platforms, we do catch such
> issues thanks to the bfin-uclinux toolchain configuration that is used
> on the autobuilders. But for those other packages that don't build on
> noMMU, we indeed don't check properly if we're able to do a pure static
> build.

 No, what I mean is: on platforms that do support shared libraries and packages
that support static-only, they will still detect that dlopen() is supported and
so they will still build support for dynamic libraries.

 But it's actually not a big deal, since they'll link with libdl.a so even at
runtime everything will work. I guess.


> Alexey has sent a patch to remove HAVE_SHARED from the uClibc
> configuration when BR2_PREFER_STATIC_LIB is enabled. Maybe this will
> get rid of ld.so, libdl and so on? I haven't tested yet.

 I don't know either.

 Regards,
 Arnout


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH v3] cppunit: Added package
  2014-10-16 10:11         ` Arnout Vandecappelle
@ 2014-10-16 15:37           ` Sebastien Bourdelin
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastien Bourdelin @ 2014-10-16 15:37 UTC (permalink / raw)
  To: buildroot

Hi,

Thanks for your review.
i will send a new patch with all your suggestions.

Regards,
Sebastien.

On 10/16/2014 06:11 AM, Arnout Vandecappelle wrote:
> On 16/10/14 11:53, Thomas Petazzoni wrote:
>> Dear Arnout Vandecappelle,
>>
>> On Thu, 16 Oct 2014 11:42:45 +0200, Arnout Vandecappelle wrote:
>>
>>>> No: if it's really related to shared libraries, then it should be a
>>>> depends on !BR2_PREFER_STATIC_LIB.
>>>  Yeah, you're probably right. It does build with PREFER_STATIC on other
>>> architectures, but that's just because there still is a dlopen in staging so it
>>> still sets CPPUNIT_HAVE_LIBDL and then it builds "correctly". But we most likely
>>> have many many packages that seem to build correctly with STATIC but actually
>>> still use shared libraries or dlopen. We probably should remove ld.so and
>>> libdl.* from staging when building static.
>> Well, for packages that do build on noMMU platforms, we do catch such
>> issues thanks to the bfin-uclinux toolchain configuration that is used
>> on the autobuilders. But for those other packages that don't build on
>> noMMU, we indeed don't check properly if we're able to do a pure static
>> build.
>  No, what I mean is: on platforms that do support shared libraries and packages
> that support static-only, they will still detect that dlopen() is supported and
> so they will still build support for dynamic libraries.
>
>  But it's actually not a big deal, since they'll link with libdl.a so even at
> runtime everything will work. I guess.
>
>
>> Alexey has sent a patch to remove HAVE_SHARED from the uClibc
>> configuration when BR2_PREFER_STATIC_LIB is enabled. Maybe this will
>> get rid of ld.so, libdl and so on? I haven't tested yet.
>  I don't know either.
>
>  Regards,
>  Arnout
>
>

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

end of thread, other threads:[~2014-10-16 15:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-15 20:22 [Buildroot] [PATCH v3] cppunit: Added package Sebastien Bourdelin
2014-10-16  8:15 ` Jerzy Grzegorek
2014-10-16  8:51 ` Arnout Vandecappelle
2014-10-16  9:08   ` Thomas Petazzoni
2014-10-16  9:42     ` Arnout Vandecappelle
2014-10-16  9:53       ` Thomas Petazzoni
2014-10-16 10:11         ` Arnout Vandecappelle
2014-10-16 15:37           ` Sebastien Bourdelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox