All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/sqlite: fix parallel build failures
@ 2015-05-20 21:58 Yann E. MORIN
  2015-05-21 10:07 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2015-05-20 21:58 UTC (permalink / raw)
  To: buildroot

Fixes:
    http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/sqlite/0001-fix-parallel-build.patch | 22 ++++++++++++++++++++++
 package/sqlite/sqlite.mk                     |  3 +++
 2 files changed, 25 insertions(+)
 create mode 100644 package/sqlite/0001-fix-parallel-build.patch

diff --git a/package/sqlite/0001-fix-parallel-build.patch b/package/sqlite/0001-fix-parallel-build.patch
new file mode 100644
index 0000000..79d80fb
--- /dev/null
+++ b/package/sqlite/0001-fix-parallel-build.patch
@@ -0,0 +1,22 @@
+Use correct dependency in Makefile.am
+
+Depending on a libtool library should be done using the .la name, not on
+the object file.
+
+Fixes hard-to-reproduce parallel build failures, like so:
+    http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/build-end.log
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+diff -durN sqlite-3081000.orig/Makefile.am sqlite-3081000/Makefile.am
+--- sqlite-3081000.orig/Makefile.am	2015-05-07 16:59:22.000000000 +0200
++++ sqlite-3081000/Makefile.am	2015-05-20 23:30:03.878784079 +0200
+@@ -7,7 +7,7 @@
+ 
+ bin_PROGRAMS = sqlite3
+ sqlite3_SOURCES = shell.c sqlite3.h
+-sqlite3_LDADD = sqlite3.$(OBJEXT) @READLINE_LIBS@
++sqlite3_LDADD = libsqlite3.la @READLINE_LIBS@
+ 
+ include_HEADERS = sqlite3.h sqlite3ext.h
+ 
diff --git a/package/sqlite/sqlite.mk b/package/sqlite/sqlite.mk
index fff219a..b2283f0 100644
--- a/package/sqlite/sqlite.mk
+++ b/package/sqlite/sqlite.mk
@@ -10,6 +10,9 @@ SQLITE_SITE = http://www.sqlite.org/2015
 SQLITE_LICENSE = Public domain
 SQLITE_INSTALL_STAGING = YES
 
+# Patching Makefile.am:
+SQLITE_AUTORECONF = YES
+
 ifeq ($(BR2_PACKAGE_SQLITE_STAT3),y)
 SQLITE_CFLAGS += -DSQLITE_ENABLE_STAT3
 endif
-- 
1.9.1

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

* [Buildroot] [PATCH] package/sqlite: fix parallel build failures
  2015-05-20 21:58 [Buildroot] [PATCH] package/sqlite: fix parallel build failures Yann E. MORIN
@ 2015-05-21 10:07 ` Thomas Petazzoni
  2015-05-21 18:06   ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2015-05-21 10:07 UTC (permalink / raw)
  To: buildroot

Dear Yann E. MORIN,

On Wed, 20 May 2015 23:58:32 +0200, Yann E. MORIN wrote:
> Fixes:
>     http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  package/sqlite/0001-fix-parallel-build.patch | 22 ++++++++++++++++++++++
>  package/sqlite/sqlite.mk                     |  3 +++
>  2 files changed, 25 insertions(+)
>  create mode 100644 package/sqlite/0001-fix-parallel-build.patch

Applied, thanks. I guess you've submitted this patch upstream, right?

Thanks,

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

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

* [Buildroot] [PATCH] package/sqlite: fix parallel build failures
  2015-05-21 10:07 ` Thomas Petazzoni
@ 2015-05-21 18:06   ` Yann E. MORIN
  2015-05-21 18:10     ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2015-05-21 18:06 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2015-05-21 12:07 +0200, Thomas Petazzoni spake thusly:
> On Wed, 20 May 2015 23:58:32 +0200, Yann E. MORIN wrote:
> > Fixes:
> >     http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/
> > 
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > ---
> >  package/sqlite/0001-fix-parallel-build.patch | 22 ++++++++++++++++++++++
> >  package/sqlite/sqlite.mk                     |  3 +++
> >  2 files changed, 25 insertions(+)
> >  create mode 100644 package/sqlite/0001-fix-parallel-build.patch
> 
> Applied, thanks. I guess you've submitted this patch upstream, right?

TLD;DR: no.

Full story:

  - sqlite uses fossil as its VCS;

  - cloning a fossil repo creates a single file (the DB) in the current
    directory;

  - "checking out" the repository is also done in the curent directory,
    polluting it;

  - there is no "fossil log" command;

  - the content of the fossil repository is clearly not aligned with
    that of the tarball;

  - there is autostuff in the repository, but it is in a sub-dorectory,
    and there is no explanation on how to use it; there is no explanation
    on how to generate the archive from the repository;

  - the mailing list are not very newbie-friendly: they are
    subscription-only (OK) but even the archives require subscription to
    be browsed (not OK).

So, in the end, I just threw in the towel...

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  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] 4+ messages in thread

* [Buildroot] [PATCH] package/sqlite: fix parallel build failures
  2015-05-21 18:06   ` Yann E. MORIN
@ 2015-05-21 18:10     ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-05-21 18:10 UTC (permalink / raw)
  To: buildroot

Dear Yann E. MORIN,

On Thu, 21 May 2015 20:06:10 +0200, Yann E. MORIN wrote:

> Full story:
> 
>   - sqlite uses fossil as its VCS;
> 
>   - cloning a fossil repo creates a single file (the DB) in the current
>     directory;
> 
>   - "checking out" the repository is also done in the curent directory,
>     polluting it;
> 
>   - there is no "fossil log" command;
> 
>   - the content of the fossil repository is clearly not aligned with
>     that of the tarball;
> 
>   - there is autostuff in the repository, but it is in a sub-dorectory,
>     and there is no explanation on how to use it; there is no explanation
>     on how to generate the archive from the repository;
> 
>   - the mailing list are not very newbie-friendly: they are
>     subscription-only (OK) but even the archives require subscription to
>     be browsed (not OK).
> 
> So, in the end, I just threw in the towel...

Seems fun :)

Maybe you could just send a mail to the mailing list to report the bug,
as suggested at https://www.sqlite.org/src/wiki?name=Bug+Reports ?

Thanks,

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

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

end of thread, other threads:[~2015-05-21 18:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-20 21:58 [Buildroot] [PATCH] package/sqlite: fix parallel build failures Yann E. MORIN
2015-05-21 10:07 ` Thomas Petazzoni
2015-05-21 18:06   ` Yann E. MORIN
2015-05-21 18:10     ` 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.