All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] netplug: add two patches to fix musl build issues
@ 2016-08-05 20:52 Thomas Petazzoni
  2016-08-08 17:59 ` Yann E. MORIN
  2016-08-08 21:48 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2016-08-05 20:52 UTC (permalink / raw)
  To: buildroot

This commit adds two patches to netplug that are needed for this package
to build with musl:

 - One patch to add a missing header inclusion
 - One patch to fix a conflicting prototype on __assert_fail().

Fixes:

  http://autobuild.buildroot.net/results/c2a5dfedba46cc8eb3d0c5c43f1f76fe0bb1805f/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 .../netplug/0002-add-missing-time-include.patch    | 20 +++++++++
 package/netplug/0003-remove-assert-fail.patch      | 51 ++++++++++++++++++++++
 2 files changed, 71 insertions(+)
 create mode 100644 package/netplug/0002-add-missing-time-include.patch
 create mode 100644 package/netplug/0003-remove-assert-fail.patch

diff --git a/package/netplug/0002-add-missing-time-include.patch b/package/netplug/0002-add-missing-time-include.patch
new file mode 100644
index 0000000..f204c92
--- /dev/null
+++ b/package/netplug/0002-add-missing-time-include.patch
@@ -0,0 +1,20 @@
+Add missing <time.h> include
+
+netplug.h uses time_t, so it must include <time.h>. This fixes a build
+issue with the musl C library.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/netplug.h
+===================================================================
+--- a/netplug.h
++++ b/netplug.h
+@@ -20,7 +20,7 @@
+ #ifndef __netplug_h
+ #define __netplug_h
+ 
+-
++#include <time.h>
+ #include <asm/types.h>
+ #include <sys/socket.h>
+ #include <linux/netlink.h>
diff --git a/package/netplug/0003-remove-assert-fail.patch b/package/netplug/0003-remove-assert-fail.patch
new file mode 100644
index 0000000..635c462
--- /dev/null
+++ b/package/netplug/0003-remove-assert-fail.patch
@@ -0,0 +1,51 @@
+Remove __assert_fail()
+
+The netplug code uses the assert() macro in various places. In glibc
+internally, assert() uses a function called __assert_fail() to print a
+message and abort. Relying on internal glibc details, netplug
+re-defines __assert_fail() in the hope that it will get called instead
+of glibc internal version.
+
+This attempt:
+
+ * Doesn't work with uClibc, which doesn't use any __assert_fail()
+   function at all. It doesn't fail to build, but it is entirely
+   useless.
+
+ * Fails to build with musl, which also defines __assert_fail(), but
+   with a different prototype.
+
+We simply remove the __assert_fail() implementation, so that the C
+library implementation of assert() just does its normal work. The only
+functionality lost is that the message is displayed on the standard
+output rather than in netplug's logs (and this was only working with
+glibc anyway).
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/lib.c
+===================================================================
+--- a/lib.c
++++ b/lib.c
+@@ -199,21 +199,6 @@
+     return x;
+ }
+ 
+-
+-void
+-__assert_fail(const char *assertion, const char *file,
+-              unsigned int line, const char *function)
+-{
+-    do_log(LOG_CRIT, "%s:%u: %s%sAssertion `%s' failed",
+-           file, line,
+-           function ? function : "",
+-           function ? ": " : "",
+-           assertion);
+-
+-    abort();
+-}
+-
+-
+ /*
+  * Local variables:
+  * c-file-style: "stroustrup"
-- 
2.7.4

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

* [Buildroot] [PATCH] netplug: add two patches to fix musl build issues
  2016-08-05 20:52 [Buildroot] [PATCH] netplug: add two patches to fix musl build issues Thomas Petazzoni
@ 2016-08-08 17:59 ` Yann E. MORIN
  2016-08-08 21:48 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2016-08-08 17:59 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2016-08-05 22:52 +0200, Thomas Petazzoni spake thusly:
> This commit adds two patches to netplug that are needed for this package
> to build with musl:
> 
>  - One patch to add a missing header inclusion
>  - One patch to fix a conflicting prototype on __assert_fail().
> 
> Fixes:
> 
>   http://autobuild.buildroot.net/results/c2a5dfedba46cc8eb3d0c5c43f1f76fe0bb1805f/
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Reviewed-by:  "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  .../netplug/0002-add-missing-time-include.patch    | 20 +++++++++
>  package/netplug/0003-remove-assert-fail.patch      | 51 ++++++++++++++++++++++
>  2 files changed, 71 insertions(+)
>  create mode 100644 package/netplug/0002-add-missing-time-include.patch
>  create mode 100644 package/netplug/0003-remove-assert-fail.patch
> 
> diff --git a/package/netplug/0002-add-missing-time-include.patch b/package/netplug/0002-add-missing-time-include.patch
> new file mode 100644
> index 0000000..f204c92
> --- /dev/null
> +++ b/package/netplug/0002-add-missing-time-include.patch
> @@ -0,0 +1,20 @@
> +Add missing <time.h> include
> +
> +netplug.h uses time_t, so it must include <time.h>. This fixes a build
> +issue with the musl C library.
> +
> +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> +
> +Index: b/netplug.h
> +===================================================================
> +--- a/netplug.h
> ++++ b/netplug.h
> +@@ -20,7 +20,7 @@
> + #ifndef __netplug_h
> + #define __netplug_h
> + 
> +-
> ++#include <time.h>
> + #include <asm/types.h>
> + #include <sys/socket.h>
> + #include <linux/netlink.h>
> diff --git a/package/netplug/0003-remove-assert-fail.patch b/package/netplug/0003-remove-assert-fail.patch
> new file mode 100644
> index 0000000..635c462
> --- /dev/null
> +++ b/package/netplug/0003-remove-assert-fail.patch
> @@ -0,0 +1,51 @@
> +Remove __assert_fail()
> +
> +The netplug code uses the assert() macro in various places. In glibc
> +internally, assert() uses a function called __assert_fail() to print a
> +message and abort. Relying on internal glibc details, netplug
> +re-defines __assert_fail() in the hope that it will get called instead
> +of glibc internal version.
> +
> +This attempt:
> +
> + * Doesn't work with uClibc, which doesn't use any __assert_fail()
> +   function at all. It doesn't fail to build, but it is entirely
> +   useless.
> +
> + * Fails to build with musl, which also defines __assert_fail(), but
> +   with a different prototype.
> +
> +We simply remove the __assert_fail() implementation, so that the C
> +library implementation of assert() just does its normal work. The only
> +functionality lost is that the message is displayed on the standard
> +output rather than in netplug's logs (and this was only working with
> +glibc anyway).
> +
> +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> +
> +Index: b/lib.c
> +===================================================================
> +--- a/lib.c
> ++++ b/lib.c
> +@@ -199,21 +199,6 @@
> +     return x;
> + }
> + 
> +-
> +-void
> +-__assert_fail(const char *assertion, const char *file,
> +-              unsigned int line, const char *function)
> +-{
> +-    do_log(LOG_CRIT, "%s:%u: %s%sAssertion `%s' failed",
> +-           file, line,
> +-           function ? function : "",
> +-           function ? ": " : "",
> +-           assertion);
> +-
> +-    abort();
> +-}
> +-
> +-
> + /*
> +  * Local variables:
> +  * c-file-style: "stroustrup"
> -- 
> 2.7.4
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  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	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] netplug: add two patches to fix musl build issues
  2016-08-05 20:52 [Buildroot] [PATCH] netplug: add two patches to fix musl build issues Thomas Petazzoni
  2016-08-08 17:59 ` Yann E. MORIN
@ 2016-08-08 21:48 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2016-08-08 21:48 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri,  5 Aug 2016 22:52:36 +0200, Thomas Petazzoni wrote:
> This commit adds two patches to netplug that are needed for this package
> to build with musl:
> 
>  - One patch to add a missing header inclusion
>  - One patch to fix a conflicting prototype on __assert_fail().
> 
> Fixes:
> 
>   http://autobuild.buildroot.net/results/c2a5dfedba46cc8eb3d0c5c43f1f76fe0bb1805f/
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
>  .../netplug/0002-add-missing-time-include.patch    | 20 +++++++++
>  package/netplug/0003-remove-assert-fail.patch      | 51 ++++++++++++++++++++++
>  2 files changed, 71 insertions(+)
>  create mode 100644 package/netplug/0002-add-missing-time-include.patch
>  create mode 100644 package/netplug/0003-remove-assert-fail.patch

Applied to master, thanks.

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

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

end of thread, other threads:[~2016-08-08 21:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-05 20:52 [Buildroot] [PATCH] netplug: add two patches to fix musl build issues Thomas Petazzoni
2016-08-08 17:59 ` Yann E. MORIN
2016-08-08 21:48 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.