Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
@ 2009-11-09  7:19 Baruch Siach
  2009-11-09 15:38 ` Peter Korsgaard
  2009-11-09 22:43 ` Lionel Landwerlin
  0 siblings, 2 replies; 12+ messages in thread
From: Baruch Siach @ 2009-11-09  7:19 UTC (permalink / raw)
  To: buildroot

Hi Buildroot list,

I need to compile libtiff as a dependency of ImageMagic on a recent Debian 
Squeeze host.  The strange this is that when the libjpeg62-dev is installed on 
the host libtools finds the host /usr/lib/libjpeg.la file during build, which makes 
the build to fail at link time as follows:

libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os -pipe -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/ -shared  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o .libs/tif_dirread.o .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o .libs/tif_flush.o .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o .libs/tif_packbits.o .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o .libs/tif_read.o .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o .libs/tif_write.o .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc      -Wl,-soname -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
/usr/lib/libjpeg.so: file not recognized: File format not recognized
collect2: ld returned 1 exit status

Removing libjpeg62-dev, or even renaming the host /usr/lib/libjpeg.la file 
makes the problem go away. Is there a sane solutions for this?

baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-09  7:19 [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host Baruch Siach
@ 2009-11-09 15:38 ` Peter Korsgaard
  2009-11-09 22:43 ` Lionel Landwerlin
  1 sibling, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2009-11-09 15:38 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 Baruch> Hi Buildroot list,

 Baruch> I need to compile libtiff as a dependency of ImageMagic on a
 Baruch> recent Debian Squeeze host.  The strange this is that when the
 Baruch> libjpeg62-dev is installed on the host libtools finds the host
 Baruch> /usr/lib/libjpeg.la file during build, which makes the build to
 Baruch> fail at link time as follows:

 Baruch> libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os -pipe -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/ -shared  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o .libs/tif_dirread.o .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o .libs/tif_flush.o .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o .libs/tif_packbits.o .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o .libs/tif_read.o .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o .libs/tif_write.o .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc      -Wl,-soname -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2

Must be an issue with the external toolchain support, because it builds
here with an internal toolchain. I'll take a closer look at it next
weekend when I'm back.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-09  7:19 [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host Baruch Siach
  2009-11-09 15:38 ` Peter Korsgaard
@ 2009-11-09 22:43 ` Lionel Landwerlin
  2009-11-10  6:37   ` Baruch Siach
  1 sibling, 1 reply; 12+ messages in thread
From: Lionel Landwerlin @ 2009-11-09 22:43 UTC (permalink / raw)
  To: buildroot

Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> Hi Buildroot list,
> 
> I need to compile libtiff as a dependency of ImageMagic on a recent Debian 
> Squeeze host.  The strange this is that when the libjpeg62-dev is installed on 
> the host libtools finds the host /usr/lib/libjpeg.la file during build, which makes 
> the build to fail at link time as follows:
> 
> libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os -pipe -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/ -shared  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o .libs/tif_dirread.o .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o .libs/tif_flush.o .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o .libs/tif_packbits.o .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o .libs/tif_read.o .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o .libs/tif_write.o .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc      -Wl,-soname -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> /usr/lib/libjpeg.so: file not recognized: File format not recognized
> collect2: ld returned 1 exit status
> 
> Removing libjpeg62-dev, or even renaming the host /usr/lib/libjpeg.la file 
> makes the problem go away. Is there a sane solutions for this?
> 
> baruch
> 

I got the same problem with a bunch of package (gtk/glib/dbus-glib...)
using an external toolchain.

I usually fix the problem by enabling libtool patching on the package.

-- 
Lionel Landwerlin <llandwerlin@gmail.com>

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-09 22:43 ` Lionel Landwerlin
@ 2009-11-10  6:37   ` Baruch Siach
  2009-11-19 15:01     ` Lionel Landwerlin
  0 siblings, 1 reply; 12+ messages in thread
From: Baruch Siach @ 2009-11-10  6:37 UTC (permalink / raw)
  To: buildroot

Hi Lionel,

On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin wrote:
> Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> > Hi Buildroot list,
> > 
> > I need to compile libtiff as a dependency of ImageMagic on a recent Debian 
> > Squeeze host.  The strange this is that when the libjpeg62-dev is installed on 
> > the host libtools finds the host /usr/lib/libjpeg.la file during build, which makes 
> > the build to fail at link time as follows:
> > 
> > libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os -pipe -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/ -shared  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o .libs/tif_dirread.o .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o .libs/tif_flush.o .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o .libs/tif_packbits.o .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o .libs/tif_read.o .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o .libs/tif_write.o .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc      -Wl,-soname -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > /usr/lib/libjpeg.so: file not recognized: File format not recognized
> > collect2: ld returned 1 exit status
> > 
> > Removing libjpeg62-dev, or even renaming the host /usr/lib/libjpeg.la file 
> > makes the problem go away. Is there a sane solutions for this?
> > 
> > baruch
> > 
> 
> I got the same problem with a bunch of package (gtk/glib/dbus-glib...)
> using an external toolchain.
> 
> I usually fix the problem by enabling libtool patching on the package.

I tried the libtool patch. Unfortunately this patch does not apply on 
ltmain.sh of the tiff package (version 3.8.2). Is there a newer version of 
this patch?

baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-10  6:37   ` Baruch Siach
@ 2009-11-19 15:01     ` Lionel Landwerlin
  2009-11-19 15:13       ` Baruch Siach
  0 siblings, 1 reply; 12+ messages in thread
From: Lionel Landwerlin @ 2009-11-19 15:01 UTC (permalink / raw)
  To: buildroot

Sorry for timeout, did you try to activate AUTORECONF=YES and
LIBTOOL_PATCH=YES ?

On Tue, Nov 10, 2009 at 7:37 AM, Baruch Siach <baruch@tkos.co.il> wrote:

> Hi Lionel,
>
> On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin wrote:
> > Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> > > Hi Buildroot list,
> > >
> > > I need to compile libtiff as a dependency of ImageMagic on a recent
> Debian
> > > Squeeze host.  The strange this is that when the libjpeg62-dev is
> installed on
> > > the host libtools finds the host /usr/lib/libjpeg.la file during
> build, which makes
> > > the build to fail at link time as follows:
> > >
> > > libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os -pipe
> -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/ -shared
>  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o
> .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o .libs/tif_dirread.o
> .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o
> .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o .libs/tif_flush.o
> .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o
> .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o .libs/tif_packbits.o
> .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o .libs/tif_read.o
> .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o
> .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o .libs/tif_write.o
> .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a
> -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc      -Wl,-soname
> -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > > /usr/lib/libjpeg.so: file not recognized: File format not recognized
> > > collect2: ld returned 1 exit status
> > >
> > > Removing libjpeg62-dev, or even renaming the host /usr/lib/libjpeg.lafile
> > > makes the problem go away. Is there a sane solutions for this?
> > >
> > > baruch
> > >
> >
> > I got the same problem with a bunch of package (gtk/glib/dbus-glib...)
> > using an external toolchain.
> >
> > I usually fix the problem by enabling libtool patching on the package.
>
> I tried the libtool patch. Unfortunately this patch does not apply on
> ltmain.sh of the tiff package (version 3.8.2). Is there a newer version of
> this patch?
>
> baruch
>
> --
>                                                     ~. .~   Tk Open Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20091119/13daaad7/attachment.htm>

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-19 15:01     ` Lionel Landwerlin
@ 2009-11-19 15:13       ` Baruch Siach
       [not found]         ` <4d28d4b50911190720s72ed6df5s29d9f52aeb2cce3f@mail.gmail.com>
  0 siblings, 1 reply; 12+ messages in thread
From: Baruch Siach @ 2009-11-19 15:13 UTC (permalink / raw)
  To: buildroot

Hi Lionel,

On Thu, Nov 19, 2009 at 04:01:17PM +0100, Lionel Landwerlin wrote:
> Sorry for timeout, did you try to activate AUTORECONF=YES and
> LIBTOOL_PATCH=YES ?

I didn't try AUTORECONF=YES. I did try LIBTOOL_PATCH=YES, but, as I said, the 
patch does not apply. I searched for a newer version of this patch, but didn't 
find any.

baruch

> On Tue, Nov 10, 2009 at 7:37 AM, Baruch Siach <baruch@tkos.co.il> wrote:
> 
> > Hi Lionel,
> >
> > On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin wrote:
> > > Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> > > > Hi Buildroot list,
> > > >
> > > > I need to compile libtiff as a dependency of ImageMagic on a recent
> > Debian
> > > > Squeeze host.  The strange this is that when the libjpeg62-dev is
> > installed on
> > > > the host libtools finds the host /usr/lib/libjpeg.la file during
> > build, which makes
> > > > the build to fail at link time as follows:
> > > >
> > > > libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os -pipe
> > -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/ -shared
> >  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o
> > .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o .libs/tif_dirread.o
> > .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o
> > .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o .libs/tif_flush.o
> > .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o
> > .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o .libs/tif_packbits.o
> > .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o .libs/tif_read.o
> > .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o
> > .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o .libs/tif_write.o
> > .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a
> > -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc      -Wl,-soname
> > -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > > > /usr/lib/libjpeg.so: file not recognized: File format not recognized
> > > > collect2: ld returned 1 exit status
> > > >
> > > > Removing libjpeg62-dev, or even renaming the host /usr/lib/libjpeg.lafile
> > > > makes the problem go away. Is there a sane solutions for this?
> > > >
> > > > baruch
> > > >
> > >
> > > I got the same problem with a bunch of package (gtk/glib/dbus-glib...)
> > > using an external toolchain.
> > >
> > > I usually fix the problem by enabling libtool patching on the package.
> >
> > I tried the libtool patch. Unfortunately this patch does not apply on
> > ltmain.sh of the tiff package (version 3.8.2). Is there a newer version of
> > this patch?
> >
> > baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
       [not found]         ` <4d28d4b50911190720s72ed6df5s29d9f52aeb2cce3f@mail.gmail.com>
@ 2009-11-23  6:56           ` Baruch Siach
  2009-11-23 10:21             ` Lionel Landwerlin
  0 siblings, 1 reply; 12+ messages in thread
From: Baruch Siach @ 2009-11-23  6:56 UTC (permalink / raw)
  To: buildroot

Hi Lionel,

On Thu, Nov 19, 2009 at 04:20:58PM +0100, Lionel Landwerlin wrote:
> With the stlinux-2.3 toolchain I have this problem too.
> Adding the AUTORECONF=YES + LIBTOOL_PATCH=YES works (for me).
> Could you that ?

I tried that. Here is what I get:

>>> tiff 3.8.2 Patching libtool

Applying buildroot-libtool.patch using plaintext: patching file ltmain.sh
Hunk #1 FAILED at 273.
Hunk #2 succeeded at 3952 (offset 1544 lines).
Hunk #3 FAILED at 4096.
Hunk #4 FAILED at 4440.
Hunk #5 succeeded at 6976 with fuzz 1 (offset 1353 lines).
Hunk #6 FAILED at 7301.
4 out of 6 hunks FAILED -- saving rejects to file ltmain.sh.rej
Patch failed!  Please fix buildroot-libtool.patch!
make: *** [/home/baruch/git/buildroot/build_arm/tiff-3.8.2/.stamp_libtool_patch] Error 1

baruch

> On Thu, Nov 19, 2009 at 4:13 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> 
> > Hi Lionel,
> >
> > On Thu, Nov 19, 2009 at 04:01:17PM +0100, Lionel Landwerlin wrote:
> > > Sorry for timeout, did you try to activate AUTORECONF=YES and
> > > LIBTOOL_PATCH=YES ?
> >
> > I didn't try AUTORECONF=YES. I did try LIBTOOL_PATCH=YES, but, as I said,
> > the
> > patch does not apply. I searched for a newer version of this patch, but
> > didn't
> > find any.
> >
> > baruch
> >
> > > On Tue, Nov 10, 2009 at 7:37 AM, Baruch Siach <baruch@tkos.co.il> wrote:
> > >
> > > > Hi Lionel,
> > > >
> > > > On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin wrote:
> > > > > Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> > > > > > Hi Buildroot list,
> > > > > >
> > > > > > I need to compile libtiff as a dependency of ImageMagic on a recent
> > > > Debian
> > > > > > Squeeze host.  The strange this is that when the libjpeg62-dev is
> > > > installed on
> > > > > > the host libtools finds the host /usr/lib/libjpeg.la file during
> > > > build, which makes
> > > > > > the build to fail at link time as follows:
> > > > > >
> > > > > > libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc -Os
> > -pipe
> > > > -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/
> > -shared
> > > >  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o .libs/tif_color.o
> > > > .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o
> > .libs/tif_dirread.o
> > > > .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o
> > > > .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o
> > .libs/tif_flush.o
> > > > .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o .libs/tif_lzw.o
> > > > .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o
> > .libs/tif_packbits.o
> > > > .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o
> > .libs/tif_read.o
> > > > .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o .libs/tif_tile.o
> > > > .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o
> > .libs/tif_write.o
> > > > .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a
> > > > -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc
> >  -Wl,-soname
> > > > -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > > > > > /usr/lib/libjpeg.so: file not recognized: File format not
> > recognized
> > > > > > collect2: ld returned 1 exit status
> > > > > >
> > > > > > Removing libjpeg62-dev, or even renaming the host
> > /usr/lib/libjpeg.lafile
> > > > > > makes the problem go away. Is there a sane solutions for this?
> > > > > >
> > > > > > baruch
> > > > > >
> > > > >
> > > > > I got the same problem with a bunch of package
> > (gtk/glib/dbus-glib...)
> > > > > using an external toolchain.
> > > > >
> > > > > I usually fix the problem by enabling libtool patching on the
> > package.
> > > >
> > > > I tried the libtool patch. Unfortunately this patch does not apply on
> > > > ltmain.sh of the tiff package (version 3.8.2). Is there a newer version
> > of
> > > > this patch?
> > > >
> > > > baruch
> >
> > --
> >                                                     ~. .~   Tk Open Systems
> > =}------------------------------------------------ooO--U--Ooo------------{=
> >   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
> >

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-23  6:56           ` Baruch Siach
@ 2009-11-23 10:21             ` Lionel Landwerlin
  2009-11-23 11:34               ` Baruch Siach
  0 siblings, 1 reply; 12+ messages in thread
From: Lionel Landwerlin @ 2009-11-23 10:21 UTC (permalink / raw)
  To: buildroot

If you're not using the lastest git, but the last official release, you
might need to apply this patch :

http://git.buildroot.org/buildroot/commit/?id=34bba153aca96765aff0c6ff4c84352cb69b94b6

--
Lionel

On Mon, Nov 23, 2009 at 7:56 AM, Baruch Siach <baruch@tkos.co.il> wrote:

> Hi Lionel,
>
> On Thu, Nov 19, 2009 at 04:20:58PM +0100, Lionel Landwerlin wrote:
> > With the stlinux-2.3 toolchain I have this problem too.
> > Adding the AUTORECONF=YES + LIBTOOL_PATCH=YES works (for me).
> > Could you that ?
>
> I tried that. Here is what I get:
>
> >>> tiff 3.8.2 Patching libtool
>
> Applying buildroot-libtool.patch using plaintext: patching file ltmain.sh
> Hunk #1 FAILED at 273.
> Hunk #2 succeeded at 3952 (offset 1544 lines).
> Hunk #3 FAILED at 4096.
> Hunk #4 FAILED at 4440.
> Hunk #5 succeeded at 6976 with fuzz 1 (offset 1353 lines).
> Hunk #6 FAILED at 7301.
> 4 out of 6 hunks FAILED -- saving rejects to file ltmain.sh.rej
> Patch failed!  Please fix buildroot-libtool.patch!
> make: ***
> [/home/baruch/git/buildroot/build_arm/tiff-3.8.2/.stamp_libtool_patch] Error
> 1
>
> baruch
>
> > On Thu, Nov 19, 2009 at 4:13 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> >
> > > Hi Lionel,
> > >
> > > On Thu, Nov 19, 2009 at 04:01:17PM +0100, Lionel Landwerlin wrote:
> > > > Sorry for timeout, did you try to activate AUTORECONF=YES and
> > > > LIBTOOL_PATCH=YES ?
> > >
> > > I didn't try AUTORECONF=YES. I did try LIBTOOL_PATCH=YES, but, as I
> said,
> > > the
> > > patch does not apply. I searched for a newer version of this patch, but
> > > didn't
> > > find any.
> > >
> > > baruch
> > >
> > > > On Tue, Nov 10, 2009 at 7:37 AM, Baruch Siach <baruch@tkos.co.il>
> wrote:
> > > >
> > > > > Hi Lionel,
> > > > >
> > > > > On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin wrote:
> > > > > > Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> > > > > > > Hi Buildroot list,
> > > > > > >
> > > > > > > I need to compile libtiff as a dependency of ImageMagic on a
> recent
> > > > > Debian
> > > > > > > Squeeze host.  The strange this is that when the libjpeg62-dev
> is
> > > > > installed on
> > > > > > > the host libtools finds the host /usr/lib/libjpeg.la file
> during
> > > > > build, which makes
> > > > > > > the build to fail at link time as follows:
> > > > > > >
> > > > > > > libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc
> -Os
> > > -pipe
> > > > > -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/
> > > -shared
> > > > >  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o
> .libs/tif_color.o
> > > > > .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o
> > > .libs/tif_dirread.o
> > > > > .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o
> > > > > .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o
> > > .libs/tif_flush.o
> > > > > .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o
> .libs/tif_lzw.o
> > > > > .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o
> > > .libs/tif_packbits.o
> > > > > .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o
> > > .libs/tif_read.o
> > > > > .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o
> .libs/tif_tile.o
> > > > > .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o
> > > .libs/tif_write.o
> > > > > .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a
> > > > > -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc
> > >  -Wl,-soname
> > > > > -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > > > > > > /usr/lib/libjpeg.so: file not recognized: File format not
> > > recognized
> > > > > > > collect2: ld returned 1 exit status
> > > > > > >
> > > > > > > Removing libjpeg62-dev, or even renaming the host
> > > /usr/lib/libjpeg.lafile
> > > > > > > makes the problem go away. Is there a sane solutions for this?
> > > > > > >
> > > > > > > baruch
> > > > > > >
> > > > > >
> > > > > > I got the same problem with a bunch of package
> > > (gtk/glib/dbus-glib...)
> > > > > > using an external toolchain.
> > > > > >
> > > > > > I usually fix the problem by enabling libtool patching on the
> > > package.
> > > > >
> > > > > I tried the libtool patch. Unfortunately this patch does not apply
> on
> > > > > ltmain.sh of the tiff package (version 3.8.2). Is there a newer
> version
> > > of
> > > > > this patch?
> > > > >
> > > > > baruch
> > >
> > > --
> > >                                                     ~. .~   Tk Open
> Systems
> > >
> =}------------------------------------------------ooO--U--Ooo------------{=
> > >   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
> > >
>
> --
>                                                      ~. .~   Tk Open
> Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20091123/d7060250/attachment.htm>

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-23 10:21             ` Lionel Landwerlin
@ 2009-11-23 11:34               ` Baruch Siach
  2009-11-23 12:52                 ` Lionel Landwerlin
  0 siblings, 1 reply; 12+ messages in thread
From: Baruch Siach @ 2009-11-23 11:34 UTC (permalink / raw)
  To: buildroot

Hi Lionel,

On Mon, Nov 23, 2009 at 11:21:04AM +0100, Lionel Landwerlin wrote:
> If you're not using the lastest git, but the last official release, you
> might need to apply this patch :
>
> http://git.buildroot.org/buildroot/commit/?id=34bba153aca96765aff0c6ff4c84352cb69b94b6

Your patch did the trick. After cherry picking 34bba15, the libtiff package 
compiles correctly.

Thanks.

baruch

> --
> Lionel
> 
> On Mon, Nov 23, 2009 at 7:56 AM, Baruch Siach <baruch@tkos.co.il> wrote:
> 
> > Hi Lionel,
> >
> > On Thu, Nov 19, 2009 at 04:20:58PM +0100, Lionel Landwerlin wrote:
> > > With the stlinux-2.3 toolchain I have this problem too.
> > > Adding the AUTORECONF=YES + LIBTOOL_PATCH=YES works (for me).
> > > Could you that ?
> >
> > I tried that. Here is what I get:
> >
> > >>> tiff 3.8.2 Patching libtool
> >
> > Applying buildroot-libtool.patch using plaintext: patching file ltmain.sh
> > Hunk #1 FAILED at 273.
> > Hunk #2 succeeded at 3952 (offset 1544 lines).
> > Hunk #3 FAILED at 4096.
> > Hunk #4 FAILED at 4440.
> > Hunk #5 succeeded at 6976 with fuzz 1 (offset 1353 lines).
> > Hunk #6 FAILED at 7301.
> > 4 out of 6 hunks FAILED -- saving rejects to file ltmain.sh.rej
> > Patch failed!  Please fix buildroot-libtool.patch!
> > make: ***
> > [/home/baruch/git/buildroot/build_arm/tiff-3.8.2/.stamp_libtool_patch] Error
> > 1
> >
> > baruch
> >
> > > On Thu, Nov 19, 2009 at 4:13 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> > >
> > > > Hi Lionel,
> > > >
> > > > On Thu, Nov 19, 2009 at 04:01:17PM +0100, Lionel Landwerlin wrote:
> > > > > Sorry for timeout, did you try to activate AUTORECONF=YES and
> > > > > LIBTOOL_PATCH=YES ?
> > > >
> > > > I didn't try AUTORECONF=YES. I did try LIBTOOL_PATCH=YES, but, as I
> > said,
> > > > the
> > > > patch does not apply. I searched for a newer version of this patch, but
> > > > didn't
> > > > find any.
> > > >
> > > > baruch
> > > >
> > > > > On Tue, Nov 10, 2009 at 7:37 AM, Baruch Siach <baruch@tkos.co.il>
> > wrote:
> > > > >
> > > > > > Hi Lionel,
> > > > > >
> > > > > > On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin wrote:
> > > > > > > Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit :
> > > > > > > > Hi Buildroot list,
> > > > > > > >
> > > > > > > > I need to compile libtiff as a dependency of ImageMagic on a
> > recent
> > > > > > Debian
> > > > > > > > Squeeze host.  The strange this is that when the libjpeg62-dev
> > is
> > > > > > installed on
> > > > > > > > the host libtools finds the host /usr/lib/libjpeg.la file
> > during
> > > > > > build, which makes
> > > > > > > > the build to fail at link time as follows:
> > > > > > > >
> > > > > > > > libtool: link: /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc
> > -Os
> > > > -pipe
> > > > > > -Os  --sysroot /home/baruch/git/buildroot/build_arm/staging_dir/
> > > > -shared
> > > > > >  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o
> > .libs/tif_color.o
> > > > > > .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o
> > > > .libs/tif_dirread.o
> > > > > > .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o
> > > > > > .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o
> > > > .libs/tif_flush.o
> > > > > > .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o
> > .libs/tif_lzw.o
> > > > > > .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o
> > > > .libs/tif_packbits.o
> > > > > > .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o
> > > > .libs/tif_read.o
> > > > > > .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o
> > .libs/tif_tile.o
> > > > > > .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o
> > > > .libs/tif_write.o
> > > > > > .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a
> > > > > > -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc
> > > >  -Wl,-soname
> > > > > > -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > > > > > > > /usr/lib/libjpeg.so: file not recognized: File format not
> > > > recognized
> > > > > > > > collect2: ld returned 1 exit status
> > > > > > > >
> > > > > > > > Removing libjpeg62-dev, or even renaming the host
> > > > /usr/lib/libjpeg.lafile
> > > > > > > > makes the problem go away. Is there a sane solutions for this?
> > > > > > > >
> > > > > > > > baruch
> > > > > > > >
> > > > > > >
> > > > > > > I got the same problem with a bunch of package
> > > > (gtk/glib/dbus-glib...)
> > > > > > > using an external toolchain.
> > > > > > >
> > > > > > > I usually fix the problem by enabling libtool patching on the
> > > > package.
> > > > > >
> > > > > > I tried the libtool patch. Unfortunately this patch does not apply
> > on
> > > > > > ltmain.sh of the tiff package (version 3.8.2). Is there a newer
> > version
> > > > of
> > > > > > this patch?
> > > > > >
> > > > > > baruch
> > > >
> > > > --
> > > >                                                     ~. .~   Tk Open
> > Systems
> > > >
> > =}------------------------------------------------ooO--U--Ooo------------{=
> > > >   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
> > > >
> >
> > --
> >                                                      ~. .~   Tk Open
> > Systems
> > =}------------------------------------------------ooO--U--Ooo------------{=
> >   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
> >

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-23 11:34               ` Baruch Siach
@ 2009-11-23 12:52                 ` Lionel Landwerlin
  2009-11-23 13:14                   ` Peter Korsgaard
  0 siblings, 1 reply; 12+ messages in thread
From: Lionel Landwerlin @ 2009-11-23 12:52 UTC (permalink / raw)
  To: buildroot

Ok cool.
I didn't identify the problem with some external toolchain. I had this
problem with an sh4-stlinux one, but not with an x86-intel one and it seems
Thomas didn't had any problem with its arm-whatever toolchains.

I'm working on a configuration choice in the toolchain's configuration to
force autoreconf/libtool patching for some external toolchains.

Peter: What do think about such an option ?

--
Lionel

On Mon, Nov 23, 2009 at 12:34 PM, Baruch Siach <baruch@tkos.co.il> wrote:

> Hi Lionel,
>
> On Mon, Nov 23, 2009 at 11:21:04AM +0100, Lionel Landwerlin wrote:
> > If you're not using the lastest git, but the last official release, you
> > might need to apply this patch :
> >
> >
> http://git.buildroot.org/buildroot/commit/?id=34bba153aca96765aff0c6ff4c84352cb69b94b6
>
> Your patch did the trick. After cherry picking 34bba15, the libtiff package
> compiles correctly.
>
> Thanks.
>
> baruch
>
> > --
> > Lionel
> >
> > On Mon, Nov 23, 2009 at 7:56 AM, Baruch Siach <baruch@tkos.co.il> wrote:
> >
> > > Hi Lionel,
> > >
> > > On Thu, Nov 19, 2009 at 04:20:58PM +0100, Lionel Landwerlin wrote:
> > > > With the stlinux-2.3 toolchain I have this problem too.
> > > > Adding the AUTORECONF=YES + LIBTOOL_PATCH=YES works (for me).
> > > > Could you that ?
> > >
> > > I tried that. Here is what I get:
> > >
> > > >>> tiff 3.8.2 Patching libtool
> > >
> > > Applying buildroot-libtool.patch using plaintext: patching file
> ltmain.sh
> > > Hunk #1 FAILED at 273.
> > > Hunk #2 succeeded at 3952 (offset 1544 lines).
> > > Hunk #3 FAILED at 4096.
> > > Hunk #4 FAILED at 4440.
> > > Hunk #5 succeeded at 6976 with fuzz 1 (offset 1353 lines).
> > > Hunk #6 FAILED at 7301.
> > > 4 out of 6 hunks FAILED -- saving rejects to file ltmain.sh.rej
> > > Patch failed!  Please fix buildroot-libtool.patch!
> > > make: ***
> > > [/home/baruch/git/buildroot/build_arm/tiff-3.8.2/.stamp_libtool_patch]
> Error
> > > 1
> > >
> > > baruch
> > >
> > > > On Thu, Nov 19, 2009 at 4:13 PM, Baruch Siach <baruch@tkos.co.il>
> wrote:
> > > >
> > > > > Hi Lionel,
> > > > >
> > > > > On Thu, Nov 19, 2009 at 04:01:17PM +0100, Lionel Landwerlin wrote:
> > > > > > Sorry for timeout, did you try to activate AUTORECONF=YES and
> > > > > > LIBTOOL_PATCH=YES ?
> > > > >
> > > > > I didn't try AUTORECONF=YES. I did try LIBTOOL_PATCH=YES, but, as I
> > > said,
> > > > > the
> > > > > patch does not apply. I searched for a newer version of this patch,
> but
> > > > > didn't
> > > > > find any.
> > > > >
> > > > > baruch
> > > > >
> > > > > > On Tue, Nov 10, 2009 at 7:37 AM, Baruch Siach <baruch@tkos.co.il
> >
> > > wrote:
> > > > > >
> > > > > > > Hi Lionel,
> > > > > > >
> > > > > > > On Mon, Nov 09, 2009 at 11:43:34PM +0100, Lionel Landwerlin
> wrote:
> > > > > > > > Le lundi 09 novembre 2009 ? 09:19 +0200, Baruch Siach a ?crit
> :
> > > > > > > > > Hi Buildroot list,
> > > > > > > > >
> > > > > > > > > I need to compile libtiff as a dependency of ImageMagic on
> a
> > > recent
> > > > > > > Debian
> > > > > > > > > Squeeze host.  The strange this is that when the
> libjpeg62-dev
> > > is
> > > > > > > installed on
> > > > > > > > > the host libtools finds the host /usr/lib/libjpeg.la file
> > > during
> > > > > > > build, which makes
> > > > > > > > > the build to fail at link time as follows:
> > > > > > > > >
> > > > > > > > > libtool: link:
> /opt/arm-2009q1/bin/arm-none-linux-gnueabi-gcc
> > > -Os
> > > > > -pipe
> > > > > > > -Os  --sysroot
> /home/baruch/git/buildroot/build_arm/staging_dir/
> > > > > -shared
> > > > > > >  .libs/tif_aux.o .libs/tif_close.o .libs/tif_codec.o
> > > .libs/tif_color.o
> > > > > > > .libs/tif_compress.o .libs/tif_dir.o .libs/tif_dirinfo.o
> > > > > .libs/tif_dirread.o
> > > > > > > .libs/tif_dirwrite.o .libs/tif_dumpmode.o .libs/tif_error.o
> > > > > > > .libs/tif_extension.o .libs/tif_fax3.o .libs/tif_fax3sm.o
> > > > > .libs/tif_flush.o
> > > > > > > .libs/tif_getimage.o .libs/tif_jpeg.o .libs/tif_luv.o
> > > .libs/tif_lzw.o
> > > > > > > .libs/tif_next.o .libs/tif_ojpeg.o .libs/tif_open.o
> > > > > .libs/tif_packbits.o
> > > > > > > .libs/tif_pixarlog.o .libs/tif_predict.o .libs/tif_print.o
> > > > > .libs/tif_read.o
> > > > > > > .libs/tif_strip.o .libs/tif_swab.o .libs/tif_thunder.o
> > > .libs/tif_tile.o
> > > > > > > .libs/tif_unix.o .libs/tif_version.o .libs/tif_warning.o
> > > > > .libs/tif_write.o
> > > > > > > .libs/tif_zip.o  -Wl,--whole-archive ../port/.libs/libport.a
> > > > > > > -Wl,--no-whole-archive  /usr/lib/libjpeg.so -lz -lm -lc
> > > > >  -Wl,-soname
> > > > > > > -Wl,libtiff.so.3 -o .libs/libtiff.so.3.8.2
> > > > > > > > > /usr/lib/libjpeg.so: file not recognized: File format not
> > > > > recognized
> > > > > > > > > collect2: ld returned 1 exit status
> > > > > > > > >
> > > > > > > > > Removing libjpeg62-dev, or even renaming the host
> > > > > /usr/lib/libjpeg.lafile
> > > > > > > > > makes the problem go away. Is there a sane solutions for
> this?
> > > > > > > > >
> > > > > > > > > baruch
> > > > > > > > >
> > > > > > > >
> > > > > > > > I got the same problem with a bunch of package
> > > > > (gtk/glib/dbus-glib...)
> > > > > > > > using an external toolchain.
> > > > > > > >
> > > > > > > > I usually fix the problem by enabling libtool patching on the
> > > > > package.
> > > > > > >
> > > > > > > I tried the libtool patch. Unfortunately this patch does not
> apply
> > > on
> > > > > > > ltmain.sh of the tiff package (version 3.8.2). Is there a newer
> > > version
> > > > > of
> > > > > > > this patch?
> > > > > > >
> > > > > > > baruch
> > > > >
> > > > > --
> > > > >                                                     ~. .~   Tk Open
> > > Systems
> > > > >
> > >
> =}------------------------------------------------ooO--U--Ooo------------{=
> > > > >   - baruch at tkos.co.il - tel: +972.2.679.5364,
> http://www.tkos.co.il -
> > > > >
> > >
> > > --
> > >                                                      ~. .~   Tk Open
> > > Systems
> > >
> =}------------------------------------------------ooO--U--Ooo------------{=
> > >   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
> > >
>
> --
>                                                      ~. .~   Tk Open
> Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20091123/008eafa7/attachment-0001.htm>

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-23 12:52                 ` Lionel Landwerlin
@ 2009-11-23 13:14                   ` Peter Korsgaard
  2009-11-23 13:17                     ` Lionel Landwerlin
  0 siblings, 1 reply; 12+ messages in thread
From: Peter Korsgaard @ 2009-11-23 13:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Lionel" == Lionel Landwerlin <llandwerlin@gmail.com> writes:

 Lionel> Ok cool.

 Lionel> I didn't identify the problem with some external toolchain. I
 Lionel> had this problem with an sh4-stlinux one, but not with an
 Lionel> x86-intel one and it seems Thomas didn't had any problem with
 Lionel> its arm-whatever toolchains.

 Lionel> I'm working on a configuration choice in the toolchain's
 Lionel> configuration to force autoreconf/libtool patching for some
 Lionel> external toolchains.

 Lionel> Peter: What do think about such an option ?

I would like to first really understand what the problem is and why not
everyone is seeing it.

Can you bring it up again post-2009.11?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host
  2009-11-23 13:14                   ` Peter Korsgaard
@ 2009-11-23 13:17                     ` Lionel Landwerlin
  0 siblings, 0 replies; 12+ messages in thread
From: Lionel Landwerlin @ 2009-11-23 13:17 UTC (permalink / raw)
  To: buildroot

On Mon, Nov 23, 2009 at 2:14 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:

> >>>>> "Lionel" == Lionel Landwerlin <llandwerlin@gmail.com> writes:
>
>  Lionel> Ok cool.
>
>  Lionel> I didn't identify the problem with some external toolchain. I
>  Lionel> had this problem with an sh4-stlinux one, but not with an
>  Lionel> x86-intel one and it seems Thomas didn't had any problem with
>  Lionel> its arm-whatever toolchains.
>
>  Lionel> I'm working on a configuration choice in the toolchain's
>  Lionel> configuration to force autoreconf/libtool patching for some
>  Lionel> external toolchains.
>
>  Lionel> Peter: What do think about such an option ?
>
> I would like to first really understand what the problem is and why not
> everyone is seeing it.
>
> Can you bring it up again post-2009.11?
>
>
It's not finished yet, but I will post it here ASAP.

--
Lionel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20091123/1d3af167/attachment.htm>

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

end of thread, other threads:[~2009-11-23 13:17 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-09  7:19 [Buildroot] libtiff compilation fails when libjpeg62-dev is present on host Baruch Siach
2009-11-09 15:38 ` Peter Korsgaard
2009-11-09 22:43 ` Lionel Landwerlin
2009-11-10  6:37   ` Baruch Siach
2009-11-19 15:01     ` Lionel Landwerlin
2009-11-19 15:13       ` Baruch Siach
     [not found]         ` <4d28d4b50911190720s72ed6df5s29d9f52aeb2cce3f@mail.gmail.com>
2009-11-23  6:56           ` Baruch Siach
2009-11-23 10:21             ` Lionel Landwerlin
2009-11-23 11:34               ` Baruch Siach
2009-11-23 12:52                 ` Lionel Landwerlin
2009-11-23 13:14                   ` Peter Korsgaard
2009-11-23 13:17                     ` Lionel Landwerlin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox