|
From: Robert Y. <lie...@wi...> - 2018-12-25 03:01:04
|
Fixed a race issue: i586-poky-linux-ar: libnolto_coregrind_x86_linux_a-m_libcsetjmp.o: No such file or directory make[3]: *** [libcoregrind-x86-linux.a] Error 1 Signed-off-by: Robert Yang <lie...@wi...> --- coregrind/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am index 94030fd..45264f0 100644 --- a/coregrind/Makefile.am +++ b/coregrind/Makefile.am @@ -313,6 +313,7 @@ COREGRIND_SOURCES_COMMON = \ m_libcprint.c \ m_libcproc.c \ m_libcsignal.c \ + m_libcsetjmp.c \ m_machine.c \ m_mallocfree.c \ m_options.c \ -- 2.10.2 |
|
From: Robert Y. <lie...@wi...> - 2018-12-25 08:09:09
|
On 12/25/18 11:00 AM, Robert Yang wrote: > Fixed a race issue: > i586-poky-linux-ar: libnolto_coregrind_x86_linux_a-m_libcsetjmp.o: No such file or directory > make[3]: *** [libcoregrind-x86-linux.a] Error 1 > > Signed-off-by: Robert Yang <lie...@wi...> > --- > coregrind/Makefile.am | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am > index 94030fd..45264f0 100644 > --- a/coregrind/Makefile.am > +++ b/coregrind/Makefile.am > @@ -313,6 +313,7 @@ COREGRIND_SOURCES_COMMON = \ > m_libcprint.c \ > m_libcproc.c \ > m_libcsignal.c \ > + m_libcsetjmp.c \ Sorry, this doesn't fix the problem, I will send a V2. I happened to see the error again. It's a race issue happened when parallel build, so it's not easy to reproduce and fix. // Robert > m_machine.c \ > m_mallocfree.c \ > m_options.c \ > |
|
From: Robert Y. <lie...@wi...> - 2018-12-27 09:21:28
|
On 12/25/18 4:13 PM, Robert Yang wrote:
>
>
> On 12/25/18 11:00 AM, Robert Yang wrote:
>> Fixed a race issue:
>> i586-poky-linux-ar: libnolto_coregrind_x86_linux_a-m_libcsetjmp.o: No such
>> file or directory
>> make[3]: *** [libcoregrind-x86-linux.a] Error 1
>>
>> Signed-off-by: Robert Yang <lie...@wi...>
>> ---
>> coregrind/Makefile.am | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am
>> index 94030fd..45264f0 100644
>> --- a/coregrind/Makefile.am
>> +++ b/coregrind/Makefile.am
>> @@ -313,6 +313,7 @@ COREGRIND_SOURCES_COMMON = \
>> m_libcprint.c \
>> m_libcproc.c \
>> m_libcsignal.c \
>> + m_libcsetjmp.c \
>
> Sorry, this doesn't fix the problem, I will send a V2.
> I happened to see the error again. It's a race issue happened when parallel
> build, so it's not easy to reproduce and fix.
I just found that it had been fixed on master branch:
commit 7820fc268fae4353118b6355f1d4b9e1b7eeebec
Author: Philippe Waroquiers <phi...@sk...>
Date: Sun Oct 28 18:35:11 2018 +0100
Fix dependencies between libcoregrind*.a and *m_main.o/*m_libcsetjmp.o
Sorry for the noise.
// Robert
>
> // Robert
>
>> m_machine.c \
>> m_mallocfree.c \
>> m_options.c \
>>
>
>
> _______________________________________________
> Valgrind-developers mailing list
> Val...@li...
> https://lists.sourceforge.net/lists/listinfo/valgrind-developers
>
|