* [PATCH 0/1] Fix bc segmentation fault.
@ 2013-08-20 2:20 Kai Kang
2013-08-20 2:20 ` [PATCH 1/1] bc: fix " Kai Kang
0 siblings, 1 reply; 7+ messages in thread
From: Kai Kang @ 2013-08-20 2:20 UTC (permalink / raw)
To: sgw; +Cc: Zhangle.Yang, openembedded-core
The following changes since commit 6382979cca1d1c57467f983ba9611f91555b20a9:
cronie: fix out of tree build (2013-08-19 11:25:23 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib kangkai/bc
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kangkai/bc
Kai Kang (1):
bc: fix segmentation fault
meta/recipes-extended/bc/bc_1.06.bb | 3 ++-
.../bc/files/fix-segment-fault.patch | 28 ++++++++++++++++++++++
2 files changed, 30 insertions(+), 1 deletion(-)
create mode 100644 meta/recipes-extended/bc/files/fix-segment-fault.patch
--
1.8.1.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/1] bc: fix segmentation fault
2013-08-20 2:20 [PATCH 0/1] Fix bc segmentation fault Kai Kang
@ 2013-08-20 2:20 ` Kai Kang
2013-08-22 6:38 ` Khem Raj
0 siblings, 1 reply; 7+ messages in thread
From: Kai Kang @ 2013-08-20 2:20 UTC (permalink / raw)
To: sgw; +Cc: Zhangle.Yang, openembedded-core
When run 'bc -l', it segmentation faults. Apply patch from BLFS to fix it.
Ref:
http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04601.html
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
meta/recipes-extended/bc/bc_1.06.bb | 3 ++-
.../bc/files/fix-segment-fault.patch | 28 ++++++++++++++++++++++
2 files changed, 30 insertions(+), 1 deletion(-)
create mode 100644 meta/recipes-extended/bc/files/fix-segment-fault.patch
diff --git a/meta/recipes-extended/bc/bc_1.06.bb b/meta/recipes-extended/bc/bc_1.06.bb
index fe9c3f4..4b28fad 100644
--- a/meta/recipes-extended/bc/bc_1.06.bb
+++ b/meta/recipes-extended/bc/bc_1.06.bb
@@ -13,7 +13,8 @@ SECTION = "base"
DEPENDS = "flex"
PR = "r2"
-SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz \
+ file://fix-segment-fault.patch "
SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117"
SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33"
diff --git a/meta/recipes-extended/bc/files/fix-segment-fault.patch b/meta/recipes-extended/bc/files/fix-segment-fault.patch
new file mode 100644
index 0000000..20c0da2
--- /dev/null
+++ b/meta/recipes-extended/bc/files/fix-segment-fault.patch
@@ -0,0 +1,28 @@
+Upstream-Status: Pending
+
+when run command such as 'echo "a = 13" | bc -l', it segmentation faults.
+This patch is from http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04602.html.
+
+Signed-off-by: Kai Kang <kai.kang@windriver.com>
+
+--- bc-1.06/lib/number.c.orig 2003-09-26 21:14:02.000000000 +0000
++++ bc-1.06/lib/number.c 2003-09-26 21:14:26.000000000 +0000
+@@ -34,6 +34,7 @@
+ #include <number.h>
+ #include <assert.h>
+ #include <stdlib.h>
++#include <string.h>
+ #include <ctype.h>/* Prototypes needed for external utility routines. */
+
+ #define bc_rt_warn rt_warn
+--- bc-1.06/bc/load.c.orig 2003-09-26 21:14:14.000000000 +0000
++++ bc-1.06/bc/load.c 2003-09-26 21:14:26.000000000 +0000
+@@ -156,7 +156,7 @@
+ long label_no;
+ long vaf_name; /* variable, array or function number. */
+ long func;
+- program_counter save_adr;
++ static program_counter save_adr;
+
+ /* Initialize. */
+ str = code;
--
1.8.1.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bc: fix segmentation fault
2013-08-20 2:20 ` [PATCH 1/1] bc: fix " Kai Kang
@ 2013-08-22 6:38 ` Khem Raj
2013-08-22 6:50 ` Kang Kai
0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2013-08-22 6:38 UTC (permalink / raw)
To: Kai Kang; +Cc: openembedded-core, Zhangle.Yang
On Aug 19, 2013, at 7:20 PM, Kai Kang <kai.kang@windriver.com> wrote:
> When run 'bc -l', it segmentation faults. Apply patch from BLFS to fix it.
>
> Ref:
> http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04601.html
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ---
> meta/recipes-extended/bc/bc_1.06.bb | 3 ++-
> .../bc/files/fix-segment-fault.patch | 28 ++++++++++++++++++++++
> 2 files changed, 30 insertions(+), 1 deletion(-)
> create mode 100644 meta/recipes-extended/bc/files/fix-segment-fault.patch
>
> diff --git a/meta/recipes-extended/bc/bc_1.06.bb b/meta/recipes-extended/bc/bc_1.06.bb
> index fe9c3f4..4b28fad 100644
> --- a/meta/recipes-extended/bc/bc_1.06.bb
> +++ b/meta/recipes-extended/bc/bc_1.06.bb
> @@ -13,7 +13,8 @@ SECTION = "base"
> DEPENDS = "flex"
> PR = "r2"
>
> -SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz"
> +SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz \
> + file://fix-segment-fault.patch "
>
> SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117"
> SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33"
> diff --git a/meta/recipes-extended/bc/files/fix-segment-fault.patch b/meta/recipes-extended/bc/files/fix-segment-fault.patch
> new file mode 100644
> index 0000000..20c0da2
> --- /dev/null
> +++ b/meta/recipes-extended/bc/files/fix-segment-fault.patch
> @@ -0,0 +1,28 @@
> +Upstream-Status: Pending
> +
> +when run command such as 'echo "a = 13" | bc -l', it segmentation faults.
> +This patch is from http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04602.html.
> +
> +Signed-off-by: Kai Kang <kai.kang@windriver.com>
> +
> +--- bc-1.06/lib/number.c.orig 2003-09-26 21:14:02.000000000 +0000
> ++++ bc-1.06/lib/number.c 2003-09-26 21:14:26.000000000 +0000
> +@@ -34,6 +34,7 @@
> + #include <number.h>
> + #include <assert.h>
> + #include <stdlib.h>
> ++#include <string.h>
what does adding this include file fix ?
> + #include <ctype.h>/* Prototypes needed for external utility routines. */
> +
> + #define bc_rt_warn rt_warn
> +--- bc-1.06/bc/load.c.orig 2003-09-26 21:14:14.000000000 +0000
> ++++ bc-1.06/bc/load.c 2003-09-26 21:14:26.000000000 +0000
> +@@ -156,7 +156,7 @@
> + long label_no;
> + long vaf_name; /* variable, array or function number. */
> + long func;
> +- program_counter save_adr;
> ++ static program_counter save_adr;
> +
> + /* Initialize. */
> + str = code;
> --
> 1.8.1.2
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bc: fix segmentation fault
2013-08-22 6:38 ` Khem Raj
@ 2013-08-22 6:50 ` Kang Kai
2013-08-22 7:15 ` Khem Raj
0 siblings, 1 reply; 7+ messages in thread
From: Kang Kai @ 2013-08-22 6:50 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-core, Zhangle.Yang
On 2013年08月22日 14:38, Khem Raj wrote:
> On Aug 19, 2013, at 7:20 PM, Kai Kang <kai.kang@windriver.com> wrote:
>
>> When run 'bc -l', it segmentation faults. Apply patch from BLFS to fix it.
>>
>> Ref:
>> http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04601.html
>>
>> Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> ---
>> meta/recipes-extended/bc/bc_1.06.bb | 3 ++-
>> .../bc/files/fix-segment-fault.patch | 28 ++++++++++++++++++++++
>> 2 files changed, 30 insertions(+), 1 deletion(-)
>> create mode 100644 meta/recipes-extended/bc/files/fix-segment-fault.patch
>>
>> diff --git a/meta/recipes-extended/bc/bc_1.06.bb b/meta/recipes-extended/bc/bc_1.06.bb
>> index fe9c3f4..4b28fad 100644
>> --- a/meta/recipes-extended/bc/bc_1.06.bb
>> +++ b/meta/recipes-extended/bc/bc_1.06.bb
>> @@ -13,7 +13,8 @@ SECTION = "base"
>> DEPENDS = "flex"
>> PR = "r2"
>>
>> -SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz"
>> +SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz \
>> + file://fix-segment-fault.patch "
>>
>> SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117"
>> SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33"
>> diff --git a/meta/recipes-extended/bc/files/fix-segment-fault.patch b/meta/recipes-extended/bc/files/fix-segment-fault.patch
>> new file mode 100644
>> index 0000000..20c0da2
>> --- /dev/null
>> +++ b/meta/recipes-extended/bc/files/fix-segment-fault.patch
>> @@ -0,0 +1,28 @@
>> +Upstream-Status: Pending
>> +
>> +when run command such as 'echo "a = 13" | bc -l', it segmentation faults.
>> +This patch is from http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04602.html.
>> +
>> +Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> +
>> +--- bc-1.06/lib/number.c.orig 2003-09-26 21:14:02.000000000 +0000
>> ++++ bc-1.06/lib/number.c 2003-09-26 21:14:26.000000000 +0000
>> +@@ -34,6 +34,7 @@
>> + #include <number.h>
>> + #include <assert.h>
>> + #include <stdlib.h>
>> ++#include <string.h>
> what does adding this include file fix ?
To be honest, I am not sure why add this include. After build it is
harmless, so I didn't want to modify it because I think LFS is trustable.
Regards,
Kai
>
>> + #include <ctype.h>/* Prototypes needed for external utility routines. */
>> +
>> + #define bc_rt_warn rt_warn
>> +--- bc-1.06/bc/load.c.orig 2003-09-26 21:14:14.000000000 +0000
>> ++++ bc-1.06/bc/load.c 2003-09-26 21:14:26.000000000 +0000
>> +@@ -156,7 +156,7 @@
>> + long label_no;
>> + long vaf_name; /* variable, array or function number. */
>> + long func;
>> +- program_counter save_adr;
>> ++ static program_counter save_adr;
>> +
>> + /* Initialize. */
>> + str = code;
>> --
>> 1.8.1.2
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>
--
Regards,
Neil | Kai Kang
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bc: fix segmentation fault
2013-08-22 6:50 ` Kang Kai
@ 2013-08-22 7:15 ` Khem Raj
2013-08-22 7:25 ` Kang Kai
0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2013-08-22 7:15 UTC (permalink / raw)
To: Kang Kai; +Cc: openembedded-core, Zhangle.Yang
Kai
On Aug 21, 2013, at 11:50 PM, Kang Kai <Kai.Kang@windriver.com> wrote:
>> what does adding this include file fix ?
>
> To be honest, I am not sure why add this include. After build it is harmless, so I didn't want to modify it because I think LFS is trustable.
>
Its matter of understanding the change and may be explaining a bit better what it fixes and make the patch better for upstream too so try to build it without this include added and see if you get some warnings/errors that it fixes and then add that information to patch header.
> Regards,
> Kai
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bc: fix segmentation fault
2013-08-22 7:15 ` Khem Raj
@ 2013-08-22 7:25 ` Kang Kai
2013-08-26 2:54 ` Kang Kai
0 siblings, 1 reply; 7+ messages in thread
From: Kang Kai @ 2013-08-22 7:25 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-core, Zhangle.Yang
On 2013年08月22日 15:15, Khem Raj wrote:
> Kai
>
> On Aug 21, 2013, at 11:50 PM, Kang Kai <Kai.Kang@windriver.com> wrote:
>
>>> what does adding this include file fix ?
>> To be honest, I am not sure why add this include. After build it is harmless, so I didn't want to modify it because I think LFS is trustable.
>>
> Its matter of understanding the change and may be explaining a bit better what it fixes and make the patch better for upstream too so try to build it without this include added and see if you get some warnings/errors that it fixes and then add that information to patch header.
Thanks.
I'll check it and be more careful next time.
Regards,
Kai
>
>> Regards,
>> Kai
>
>
--
Regards,
Neil | Kai Kang
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bc: fix segmentation fault
2013-08-22 7:25 ` Kang Kai
@ 2013-08-26 2:54 ` Kang Kai
0 siblings, 0 replies; 7+ messages in thread
From: Kang Kai @ 2013-08-26 2:54 UTC (permalink / raw)
To: Kang Kai; +Cc: openembedded-core
On 2013年08月22日 15:25, Kang Kai wrote:
> On 2013年08月22日 15:15, Khem Raj wrote:
>> Kai
>>
>> On Aug 21, 2013, at 11:50 PM, Kang Kai <Kai.Kang@windriver.com> wrote:
>>
>>>> what does adding this include file fix ?
>>> To be honest, I am not sure why add this include. After build it is
>>> harmless, so I didn't want to modify it because I think LFS is
>>> trustable.
>>>
Hi Raj,
>> Its matter of understanding the change and may be explaining a bit
>> better what it fixes and make the patch better for upstream too so
>> try to build it without this include added and see if you get some
>> warnings/errors that it fixes and then add that information to patch
>> header.
It is no warning shows without the include patch. But the patch is merged.
Sorry again.
Kai
>
> Thanks.
> I'll check it and be more careful next time.
>
> Regards,
> Kai
>
>>
>>> Regards,
>>> Kai
>>
>>
>
>
--
Regards,
Neil | Kai Kang
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-08-26 2:54 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-20 2:20 [PATCH 0/1] Fix bc segmentation fault Kai Kang
2013-08-20 2:20 ` [PATCH 1/1] bc: fix " Kai Kang
2013-08-22 6:38 ` Khem Raj
2013-08-22 6:50 ` Kang Kai
2013-08-22 7:15 ` Khem Raj
2013-08-22 7:25 ` Kang Kai
2013-08-26 2:54 ` Kang Kai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox