* [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6
@ 2017-05-14 21:26 Romain Naour
2017-05-15 18:24 ` Peter Korsgaard
2017-05-17 20:35 ` Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Romain Naour @ 2017-05-14 21:26 UTC (permalink / raw)
To: buildroot
Upstream added -Wno-nonnull-compare to disable this error [1].
Fixes:
libfaketime.c:513:7: error?: nonnull argument ??buf?? compared to NULL [-Werror=nonnull-compare]
if (buf != NULL)
^
[1] https://github.com/wolfcw/libfaketime/commit/47e958b753fc15098a2b7d0e9ef26b83ee255874
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
...isable-the-non-null-compare-warning-error.patch | 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
diff --git a/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch b/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
new file mode 100644
index 0000000..859592e
--- /dev/null
+++ b/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
@@ -0,0 +1,31 @@
+From e85a157b51b1276c91c736d8624d9f3e876e9189 Mon Sep 17 00:00:00 2001
+From: Andreas Rammhold <andreas@rammhold.de>
+Date: Tue, 20 Dec 2016 19:25:32 +0100
+Subject: [PATCH] Disable the non-null compare warning/error.
+
+We rely on the provided local library definitions for the hooked
+functions which in some cases (GCC >6) carry a non-null-attribute flag
+which causes compile errors on `!= NULL` checks.
+
+[Romain: rebase on 0.9.6]
+Signed-off-by: Romain Naour <romain.naour@gmail.com>
+---
+ src/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index 51634b0..bbbd476 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -67,7 +67,7 @@ INSTALL ?= install
+ PREFIX ?= /usr/local
+ LIBDIRNAME ?= /lib/faketime
+
+-CFLAGS += -std=gnu99 -Wall -Wextra -Werror -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
++CFLAGS += -std=gnu99 -Wall -Wextra -Werror -Wno-nonnull-compare -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
+ LIB_LDFLAGS += -shared
+ LDFLAGS += -Wl,--version-script=libfaketime.map -lpthread
+ LDADD += -ldl -lm -lrt
+--
+2.9.3
+
--
2.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6
2017-05-14 21:26 [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6 Romain Naour
@ 2017-05-15 18:24 ` Peter Korsgaard
2017-05-15 20:36 ` Romain Naour
2017-05-17 20:35 ` Peter Korsgaard
1 sibling, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2017-05-15 18:24 UTC (permalink / raw)
To: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:
> Upstream added -Wno-nonnull-compare to disable this error [1].
> Fixes:
> libfaketime.c:513:7: error?: nonnull argument ??buf?? compared to NULL [-Werror=nonnull-compare]
> if (buf != NULL)
> ^
> [1] https://github.com/wolfcw/libfaketime/commit/47e958b753fc15098a2b7d0e9ef26b83ee255874
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
> ...isable-the-non-null-compare-warning-error.patch | 31 ++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
> create mode 100644 package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
> diff --git a/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch b/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
> new file mode 100644
> index 0000000..859592e
> --- /dev/null
> +++ b/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
> @@ -0,0 +1,31 @@
> +From e85a157b51b1276c91c736d8624d9f3e876e9189 Mon Sep 17 00:00:00 2001
> +From: Andreas Rammhold <andreas@rammhold.de>
> +Date: Tue, 20 Dec 2016 19:25:32 +0100
> +Subject: [PATCH] Disable the non-null compare warning/error.
> +
> +We rely on the provided local library definitions for the hooked
> +functions which in some cases (GCC >6) carry a non-null-attribute flag
> +which causes compile errors on `!= NULL` checks.
> +
> +[Romain: rebase on 0.9.6]
> +Signed-off-by: Romain Naour <romain.naour@gmail.com>
It is nice if you use the -x option to git cherry-pick so it adds a
comment about the original git commit id. I've now manually added it.
> +---
> + src/Makefile | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/Makefile b/src/Makefile
> +index 51634b0..bbbd476 100644
> +--- a/src/Makefile
> ++++ b/src/Makefile
> +@@ -67,7 +67,7 @@ INSTALL ?= install
> + PREFIX ?= /usr/local
> + LIBDIRNAME ?= /lib/faketime
> +
> +-CFLAGS += -std=gnu99 -Wall -Wextra -Werror -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
> ++CFLAGS += -std=gnu99 -Wall -Wextra -Werror -Wno-nonnull-compare -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
The -Wall -Werror flags are not so nice, but oh well.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6
2017-05-15 18:24 ` Peter Korsgaard
@ 2017-05-15 20:36 ` Romain Naour
2017-05-16 6:41 ` Peter Korsgaard
0 siblings, 1 reply; 5+ messages in thread
From: Romain Naour @ 2017-05-15 20:36 UTC (permalink / raw)
To: buildroot
Hi Peter,
Le 15/05/2017 ? 20:24, Peter Korsgaard a ?crit :
>>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:
>
> > Upstream added -Wno-nonnull-compare to disable this error [1].
> > Fixes:
> > libfaketime.c:513:7: error : nonnull argument ? buf ? compared to NULL [-Werror=nonnull-compare]
> > if (buf != NULL)
> > ^
> > [1] https://github.com/wolfcw/libfaketime/commit/47e958b753fc15098a2b7d0e9ef26b83ee255874
>
> > Signed-off-by: Romain Naour <romain.naour@gmail.com>
> > ---
> > ...isable-the-non-null-compare-warning-error.patch | 31 ++++++++++++++++++++++
> > 1 file changed, 31 insertions(+)
> > create mode 100644 package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
>
> > diff --git a/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch b/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
> > new file mode 100644
> > index 0000000..859592e
> > --- /dev/null
> > +++ b/package/faketime/0001-Disable-the-non-null-compare-warning-error.patch
> > @@ -0,0 +1,31 @@
> > +From e85a157b51b1276c91c736d8624d9f3e876e9189 Mon Sep 17 00:00:00 2001
> > +From: Andreas Rammhold <andreas@rammhold.de>
> > +Date: Tue, 20 Dec 2016 19:25:32 +0100
> > +Subject: [PATCH] Disable the non-null compare warning/error.
> > +
> > +We rely on the provided local library definitions for the hooked
> > +functions which in some cases (GCC >6) carry a non-null-attribute flag
> > +which causes compile errors on `!= NULL` checks.
> > +
> > +[Romain: rebase on 0.9.6]
> > +Signed-off-by: Romain Naour <romain.naour@gmail.com>
>
> It is nice if you use the -x option to git cherry-pick so it adds a
> comment about the original git commit id. I've now manually added it.
Well, sometime I just use git format-patch -1 HASH when the patch apply cleanly
without creating a new branch and cherry-picking. In that case there is no -x
option...
Ok, I'll take care to keep the upstream hash :)
>
>
>> +---
> > + src/Makefile | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/src/Makefile b/src/Makefile
> > +index 51634b0..bbbd476 100644
> > +--- a/src/Makefile
> > ++++ b/src/Makefile
> > +@@ -67,7 +67,7 @@ INSTALL ?= install
> > + PREFIX ?= /usr/local
> > + LIBDIRNAME ?= /lib/faketime
> > +
> > +-CFLAGS += -std=gnu99 -Wall -Wextra -Werror -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
> > ++CFLAGS += -std=gnu99 -Wall -Wextra -Werror -Wno-nonnull-compare -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
>
> The -Wall -Werror flags are not so nice, but oh well.
ha yes... do you want I send a new patch removing Werror instead ?
Best regards,
Romain
>
> Committed, thanks.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6
2017-05-15 20:36 ` Romain Naour
@ 2017-05-16 6:41 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-05-16 6:41 UTC (permalink / raw)
To: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:
Hi,
>> > +[Romain: rebase on 0.9.6]
>> > +Signed-off-by: Romain Naour <romain.naour@gmail.com>
>>
>> It is nice if you use the -x option to git cherry-pick so it adds a
>> comment about the original git commit id. I've now manually added it.
> Well, sometime I just use git format-patch -1 HASH when the patch apply cleanly
> without creating a new branch and cherry-picking. In that case there is no -x
> option...
No, but in that case you are not rebasing, so the git hash listed in the
commit is the correct one. The -x option is only when you rebase /
cherry-pick for traceability.
>>> +---
>> > + src/Makefile | 2 +-
>> > + 1 file changed, 1 insertion(+), 1 deletion(-)
>> > +
>> > +diff --git a/src/Makefile b/src/Makefile
>> > +index 51634b0..bbbd476 100644
>> > +--- a/src/Makefile
>> > ++++ b/src/Makefile
>> > +@@ -67,7 +67,7 @@ INSTALL ?= install
>> > + PREFIX ?= /usr/local
>> > + LIBDIRNAME ?= /lib/faketime
>> > +
>> > +-CFLAGS += -std=gnu99 -Wall -Wextra -Werror -DFAKE_STAT
>> > -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC
>> > -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
>> > ++CFLAGS += -std=gnu99 -Wall -Wextra -Werror -Wno-nonnull-compare
>> > -DFAKE_STAT -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS
>> > -fPIC -DPREFIX='"'$(PREFIX)'"' -DLIBDIRNAME='"'$(LIBDIRNAME)'"'
>>
>> The -Wall -Werror flags are not so nice, but oh well.
> ha yes... do you want I send a new patch removing Werror instead ?
So far we don't seem to have any build failures from it (besides this
one), so it isn't strictly needed - Just a potential problem.
I would leave it as is for now, unless if we can convince upstream to
accept such a patch.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6
2017-05-14 21:26 [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6 Romain Naour
2017-05-15 18:24 ` Peter Korsgaard
@ 2017-05-17 20:35 ` Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-05-17 20:35 UTC (permalink / raw)
To: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:
> Upstream added -Wno-nonnull-compare to disable this error [1].
> Fixes:
> libfaketime.c:513:7: error?: nonnull argument ??buf?? compared to NULL [-Werror=nonnull-compare]
> if (buf != NULL)
> ^
> [1] https://github.com/wolfcw/libfaketime/commit/47e958b753fc15098a2b7d0e9ef26b83ee255874
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
Committed to 2017.02.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-05-17 20:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-14 21:26 [Buildroot] [PATCH] package/faketime: fix build with gcc >= 6 Romain Naour
2017-05-15 18:24 ` Peter Korsgaard
2017-05-15 20:36 ` Romain Naour
2017-05-16 6:41 ` Peter Korsgaard
2017-05-17 20:35 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox