* [Buildroot] LDFLAGS setting in buildroot
@ 2008-10-28 12:36 Daniel J Laird
2008-10-28 13:18 ` Bernhard Reutner-Fischer
2008-10-28 13:37 ` Thomas Petazzoni
0 siblings, 2 replies; 22+ messages in thread
From: Daniel J Laird @ 2008-10-28 12:36 UTC (permalink / raw)
To: buildroot
Sometime ago Thomas Petazzoni posted some patches about setting rpath-link etc.
I have been playing with this and have come to similar conclusion. That is that
doing LD="$(TARGET_LD) $(TARGET_LDFLAGS)" is not very helpful.
In fact if I do this I need to pass LDFLAGS to lots of my packages
directfb
png,
webkit,
cairo,
To name but a few.
However if I split this into:
LD="$(TARGET_LD)"
LDFLAGS="$(TARGET_LDFLAGS)"
They all build better (i.e I do not need to add LD_FLAGS to all the packages) and I can then add --rpath-link lines to TARGET_LDFLAGS and they all still build (no shared library issues)
Does anyone have any problems with what I am suggesting before I go ahead and commit.....
Many thanks
Daniel Laird
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 12:36 [Buildroot] LDFLAGS setting in buildroot Daniel J Laird
@ 2008-10-28 13:18 ` Bernhard Reutner-Fischer
2008-10-28 13:35 ` Thomas Petazzoni
2008-10-28 13:58 ` Daniel J Laird
2008-10-28 13:37 ` Thomas Petazzoni
1 sibling, 2 replies; 22+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-28 13:18 UTC (permalink / raw)
To: buildroot
On Tue, Oct 28, 2008 at 01:36:08PM +0100, Daniel J Laird wrote:
>Does anyone have any problems with what I am suggesting before I go ahead and commit.....
See very end of
http://busybox.net/lists/buildroot/2008-October/011313.html
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 13:18 ` Bernhard Reutner-Fischer
@ 2008-10-28 13:35 ` Thomas Petazzoni
2008-10-28 13:45 ` Bernhard Reutner-Fischer
2008-10-28 13:58 ` Daniel J Laird
1 sibling, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2008-10-28 13:35 UTC (permalink / raw)
To: buildroot
Le Tue, 28 Oct 2008 14:18:17 +0100,
Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> a ?crit :
> >Does anyone have any problems with what I am suggesting before I go
> >ahead and commit.....
>
> See very end of
> http://busybox.net/lists/buildroot/2008-October/011313.html
I'm sorry, but I don't see the relationship between the technical issue
raised by Daniel and the e-mail you're pointing to. Or maybe I
misunderstood, and you're not discussion the technical issue but rather
the integration process ?
Thanks,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 12:36 [Buildroot] LDFLAGS setting in buildroot Daniel J Laird
2008-10-28 13:18 ` Bernhard Reutner-Fischer
@ 2008-10-28 13:37 ` Thomas Petazzoni
1 sibling, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2008-10-28 13:37 UTC (permalink / raw)
To: buildroot
Le Tue, 28 Oct 2008 13:36:08 +0100,
Daniel J Laird <daniel.j.laird@nxp.com> a ?crit :
> Sometime ago Thomas Petazzoni posted some patches about setting
> rpath-link etc.
>
> I have been playing with this and have come to similar conclusion.
> That is that doing LD="$(TARGET_LD) $(TARGET_LDFLAGS)" is not very
> helpful.
It's worse than that: on my setup, the patch you committed didn't work
because the -Wl,--rpath-link option was in TARGET_LDFLAGS, and so was
part of the LD variable, leading to ./configure failures when trying to
detect available libraries.
> They all build better (i.e I do not need to add LD_FLAGS to all the
> packages) and I can then add --rpath-link lines to TARGET_LDFLAGS and
> they all still build (no shared library issues) Does anyone have any
> problems with what I am suggesting before I go ahead and commit.....
Can you just send the patch you intend to commit, so that I can test
before ?
Thanks a lot for caring about this issue !
Cheers,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 13:35 ` Thomas Petazzoni
@ 2008-10-28 13:45 ` Bernhard Reutner-Fischer
2008-10-28 14:08 ` Thomas Petazzoni
2008-10-28 14:55 ` Daniel J Laird
0 siblings, 2 replies; 22+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-28 13:45 UTC (permalink / raw)
To: buildroot
On Tue, Oct 28, 2008 at 02:35:38PM +0100, Thomas Petazzoni wrote:
>Le Tue, 28 Oct 2008 14:18:17 +0100,
>Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> a ?crit :
>
>> >Does anyone have any problems with what I am suggesting before I go
>> >ahead and commit.....
>>
>> See very end of
>> http://busybox.net/lists/buildroot/2008-October/011313.html
>
>I'm sorry, but I don't see the relationship between the technical issue
>raised by Daniel and the e-mail you're pointing to. Or maybe I
Did you read the hunk i pointed at?
>misunderstood, and you're not discussion the technical issue but rather
>the integration process ?
I'm talking about technical issues you are having and how to tackle them
properly.
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 13:18 ` Bernhard Reutner-Fischer
2008-10-28 13:35 ` Thomas Petazzoni
@ 2008-10-28 13:58 ` Daniel J Laird
2008-10-28 22:20 ` Thomas Petazzoni
1 sibling, 1 reply; 22+ messages in thread
From: Daniel J Laird @ 2008-10-28 13:58 UTC (permalink / raw)
To: buildroot
The proposed patch would be something like this:
--- buildroot/SVN/buildroot/package/Makefile.in
+++ buildroot/SVN/buildroot.new/package/Makefile.in
@@ -39,7 +39,7 @@
ifeq ($(BR2_TOOLCHAIN_SOURCE),y)
TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) \
-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include
-TARGET_LDFLAGS+=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib
+TARGET_LDFLAGS+=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib -Wl,--rpath-link -Wl,$(STAGING_DIR)/lib -Wl,--rpath-link -Wl,$(STAGING_DIR)/usr/lib
ifeq ($(BR2_TOOLCHAIN_SYSROOT),y)
TARGET_CFLAGS+= $(BR2_SYSROOT) $(BR2_ISYSROOT)
TARGET_LDFLAGS+= $(BR2_SYSROOT)
@@ -91,7 +91,7 @@
else
TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include -I$(TOOLCHAIN_EXTERNAL_PATH)/$(TOOLCHAIN_EXTERNAL_PREFIX)/include
TARGET_CXXFLAGS=$(TARGET_CFLAGS)
-TARGET_LDFLAGS=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib
+TARGET_LDFLAGS+=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib -Wl,--rpath-link -Wl,$(STAGING_DIR)/lib -Wl,--rpath-link -Wl,$(STAGING_DIR)/usr/lib
endif
#########################################################################
#ifeq ($(BR2_ROOTFS_SUFFIX),)
@@ -126,7 +126,8 @@
#"))
#TOOL_BUILD_DIR=$(BASE_DIR)/$(TOPDIR_PREFIX)toolchain_build_$(TOOLCHAIN_EXTERNAL_PREFIX)
TOOL_BUILD_DIR=$(BASE_DIR)/$(TOPDIR_PREFIX)toolchain_build_$(ARCH)$(COND_ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX)
-TARGET_PATH="$(STAGING_DIR)/bin:$(TOOL_BUILD_DIR)/bin:$(TOOLCHAIN_EXTERNAL_PATH)/bin:$(PATH)"
+# Make sure that STAGING_DIR/usr/bin is in path for freetype-config etc.
+TARGET_PATH="$(STAGING_DIR)/usr/bin:$(STAGING_DIR)/bin:$(TOOL_BUILD_DIR)/bin:$(TOOLCHAIN_EXTERNAL_PATH)/bin:$(PATH)"
#IMAGE:=$(BINARIES_DIR)/$(BR2_ROOTFS_PREFIX).$(TOOLCHAIN_EXTERNAL_PREFIX)$(ROOTFS_SUFFIX)
IMAGE:=$(BINARIES_DIR)/$(BR2_ROOTFS_PREFIX).$(ARCH)$(COND_ARCH_FPU_SUFFIX)$(ROOTFS_SUFFIX)
@@ -196,7 +197,8 @@
TARGET_CONFIGURE_OPTS=PATH=$(TARGET_PATH) \
AR="$(TARGET_AR)" \
AS="$(TARGET_AS)" \
- LD="$(TARGET_LD) $(TARGET_LDFLAGS)" \
+ LD="$(TARGET_LD)" \
+ LDFLAGS="$(TARGET_LDFLAGS)" \
NM="$(TARGET_NM)" \
CC="$(TARGET_CC) $(TARGET_CFLAGS)" \
GCC="$(TARGET_CC) $(TARGET_CFLAGS)" \
Let me know your thoughts
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 13:45 ` Bernhard Reutner-Fischer
@ 2008-10-28 14:08 ` Thomas Petazzoni
2008-10-28 15:31 ` Bernhard Reutner-Fischer
2008-10-28 14:55 ` Daniel J Laird
1 sibling, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2008-10-28 14:08 UTC (permalink / raw)
To: buildroot
Le Tue, 28 Oct 2008 14:45:55 +0100,
Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> a ?crit :
> >I'm sorry, but I don't see the relationship between the technical
> >issue raised by Daniel and the e-mail you're pointing to. Or maybe I
>
> Did you read the hunk i pointed at?
Yes I did, but didn't get that ? my tree ? was a reference to your Git
tree. Where is it located, again ?
It's a shame that the Buildroot development is split between the
Subversion tree and your Git tree. Both of them carry useful stuff.
Was the move to a personal Git tree motivated by the use of Git as a
tool, or by the integration process of patches in Buildroot SVN ? How
can we progress to unify the project again, if possible ?
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 13:45 ` Bernhard Reutner-Fischer
2008-10-28 14:08 ` Thomas Petazzoni
@ 2008-10-28 14:55 ` Daniel J Laird
1 sibling, 0 replies; 22+ messages in thread
From: Daniel J Laird @ 2008-10-28 14:55 UTC (permalink / raw)
To: buildroot
I have read the hunk pointed at and am slightly confused.
Is there another buildroot tree (your tree) that does things better than the buildroot tree hosted at buildroot.org?
If so what is its location? As I am always interested in improvements...
Secondly I am using buildroot in an existing build system so switching away from buildroot is not going to happen so perhaps we can start to move the good stuff from your tree over?
The alternative is to take the patches I have proposed because although not perfect I believe they improve the current buildroot tree.
Many thanks
Daniel Laird
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 14:08 ` Thomas Petazzoni
@ 2008-10-28 15:31 ` Bernhard Reutner-Fischer
2008-10-28 16:00 ` Thomas Petazzoni
0 siblings, 1 reply; 22+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-28 15:31 UTC (permalink / raw)
To: buildroot
On Tue, Oct 28, 2008 at 03:08:33PM +0100, Thomas Petazzoni wrote:
>can we progress to unify the project again, if possible ?
Anybody is invited to transfer my changes back to the svn tree. I
deliberately didn't hide it away.
HTH,
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 15:31 ` Bernhard Reutner-Fischer
@ 2008-10-28 16:00 ` Thomas Petazzoni
2008-10-28 16:07 ` Nick Peirson
2008-10-28 16:13 ` Bernhard Reutner-Fischer
0 siblings, 2 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2008-10-28 16:00 UTC (permalink / raw)
To: buildroot
Le Tue, 28 Oct 2008 16:31:00 +0100,
Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> a ?crit :
> >can we progress to unify the project again, if possible ?
>
> Anybody is invited to transfer my changes back to the svn tree. I
> deliberately didn't hide it away.
By saying this, you're declining the idea of contributing again to the
main Buildroot tree ?
Where's located your Git tree again ?
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 16:00 ` Thomas Petazzoni
@ 2008-10-28 16:07 ` Nick Peirson
2008-10-28 16:13 ` Bernhard Reutner-Fischer
1 sibling, 0 replies; 22+ messages in thread
From: Nick Peirson @ 2008-10-28 16:07 UTC (permalink / raw)
To: buildroot
Thomas Petazzoni wrote:
> Where's located your Git tree again
I presume it's:
http://repo.or.cz/w/buildroot.git
Google is your friend! :c)
--
Regards
Nick Peirson
--
Internet Central Ltd is a limited company registered in England. Registered number: 3079542. Registered office: Ivy House Foundry, Hanley, Stoke-on-Trent ST1 3NR.
This message is private and confidential. If you have received this message in error, please notify us and remove it from your system.
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 16:00 ` Thomas Petazzoni
2008-10-28 16:07 ` Nick Peirson
@ 2008-10-28 16:13 ` Bernhard Reutner-Fischer
2008-10-28 16:54 ` Steffen Schulz
2008-10-28 17:11 ` Daniel J Laird
1 sibling, 2 replies; 22+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-28 16:13 UTC (permalink / raw)
To: buildroot
On Tue, Oct 28, 2008 at 05:00:50PM +0100, Thomas Petazzoni wrote:
>By saying this, you're declining the idea of contributing again to the
>main Buildroot tree ?
I constantly do but i will not put stuff back into the svn tree anytime
soon. Feel free to work with jacmet to bring svn back in sync.
>
>Where's located your Git tree again ?
http://www.google.com/search?num=2&hl=en&as_qdr=all&q=buildroot+git+tree&btnG=Search
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 16:13 ` Bernhard Reutner-Fischer
@ 2008-10-28 16:54 ` Steffen Schulz
2008-10-28 17:11 ` Daniel J Laird
1 sibling, 0 replies; 22+ messages in thread
From: Steffen Schulz @ 2008-10-28 16:54 UTC (permalink / raw)
To: buildroot
On 081028 at 17:15, Bernhard Reutner-Fischer wrote:
> On Tue, Oct 28, 2008 at 05:00:50PM +0100, Thomas Petazzoni wrote:
> >By saying this, you're declining the idea of contributing again to the
> >main Buildroot tree ?
>
> I constantly do but i will not put stuff back into the svn tree anytime
> soon. Feel free to work with jacmet to bring svn back in sync.
So...without blaming anyone for anything here...
Do you accept and merge patches in finite time, and without them
sitting around in the bug tracking system for a few months?
Or what is this about?
/steffen
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 16:13 ` Bernhard Reutner-Fischer
2008-10-28 16:54 ` Steffen Schulz
@ 2008-10-28 17:11 ` Daniel J Laird
2008-10-28 17:17 ` Bernhard Reutner-Fischer
1 sibling, 1 reply; 22+ messages in thread
From: Daniel J Laird @ 2008-10-28 17:11 UTC (permalink / raw)
To: buildroot
Thanks for the link. It looks like we want to start merging the AUTO_CONFIGURE_TARGET, the only downside at the moment is this is only used for Makefile.autotools.in stuff so I would need to do some changes to make it useful for directfb.mk for example.
I will have a look at the rest of these changes as well
Dan
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 17:11 ` Daniel J Laird
@ 2008-10-28 17:17 ` Bernhard Reutner-Fischer
2008-10-28 17:32 ` Daniel J Laird
2008-10-29 10:10 ` Daniel J Laird
0 siblings, 2 replies; 22+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-28 17:17 UTC (permalink / raw)
To: buildroot
On Tue, Oct 28, 2008 at 06:11:13PM +0100, Daniel J Laird wrote:
>Thanks for the link. It looks like we want to start merging the AUTO_CONFIGURE_TARGET, the only downside at the moment is this is only used for Makefile.autotools.in stuff so I would need to do some changes to make it useful for directfb.mk for example.
This is not entirely true. grep AUTO_CONFIGURE_TARGET package/*/*.mk
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 17:17 ` Bernhard Reutner-Fischer
@ 2008-10-28 17:32 ` Daniel J Laird
2008-10-29 10:10 ` Daniel J Laird
1 sibling, 0 replies; 22+ messages in thread
From: Daniel J Laird @ 2008-10-28 17:32 UTC (permalink / raw)
To: buildroot
Agreed, I would need to do for directfb.mk what you have done is lots of other packages.....
I think I will look into adding your stuff and see where that gets me.
Cheers
Dan
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 13:58 ` Daniel J Laird
@ 2008-10-28 22:20 ` Thomas Petazzoni
2008-10-29 11:29 ` Thomas Petazzoni
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2008-10-28 22:20 UTC (permalink / raw)
To: buildroot
Le Tue, 28 Oct 2008 14:58:19 +0100,
Daniel J Laird <daniel.j.laird@nxp.com> a ?crit :
> The proposed patch would be something like this:
I confirm that this patch works for me, I was able to build Gtk +
DirectFB with all their dependencies properly.
Acked-By: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sincerly,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 17:17 ` Bernhard Reutner-Fischer
2008-10-28 17:32 ` Daniel J Laird
@ 2008-10-29 10:10 ` Daniel J Laird
2008-10-29 14:11 ` Peter Korsgaard
2008-10-29 14:48 ` Bernhard Reutner-Fischer
1 sibling, 2 replies; 22+ messages in thread
From: Daniel J Laird @ 2008-10-29 10:10 UTC (permalink / raw)
To: buildroot
I have been playing with using the AUTO_CONFIGURE_TARGET and it seems to be going faster as you indicated but I have discovered an issue.
I build a number of packages and as each one builds they update the central cache file.
However One of my packages configures before zlib is built.
This means it caches zlib is unavailable.
directfb then tries to build and it checks for zlib and returns
zlib.h not found...(cached)
Do you see such issues as I cannot see how to make the cache file update with correct values after it has been told something does not exist.
Many thanks
Daniel Kaird
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-28 22:20 ` Thomas Petazzoni
@ 2008-10-29 11:29 ` Thomas Petazzoni
0 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2008-10-29 11:29 UTC (permalink / raw)
To: buildroot
Le Tue, 28 Oct 2008 23:20:24 +0100,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> a ?crit :
> > The proposed patch would be something like this:
>
> I confirm that this patch works for me, I was able to build Gtk +
> DirectFB with all their dependencies properly.
The patch also seems to solve http://busybox.net/bugs/view.php?id=5714.
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-29 10:10 ` Daniel J Laird
@ 2008-10-29 14:11 ` Peter Korsgaard
2008-10-29 14:17 ` Daniel Laird
2008-10-29 14:48 ` Bernhard Reutner-Fischer
1 sibling, 1 reply; 22+ messages in thread
From: Peter Korsgaard @ 2008-10-29 14:11 UTC (permalink / raw)
To: buildroot
>>>>> "Daniel" == Daniel J Laird <daniel.j.laird@nxp.com> writes:
Daniel> I have been playing with using the AUTO_CONFIGURE_TARGET and it seems to be going faster as you indicated but I have discovered an issue.
Daniel> I build a number of packages and as each one builds they update the central cache file.
Daniel> However One of my packages configures before zlib is built.
Daniel> This means it caches zlib is unavailable.
Shouldn't that package then depend on zlib?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-29 14:11 ` Peter Korsgaard
@ 2008-10-29 14:17 ` Daniel Laird
0 siblings, 0 replies; 22+ messages in thread
From: Daniel Laird @ 2008-10-29 14:17 UTC (permalink / raw)
To: buildroot
Yes, I agree. in this case freetype was not dependant upon zlib and it
looks for it in configure so I added that dependancy and it works fine.....
-----Original Message-----
From: buildroot-bounces@uclibc.org [mailto:buildroot-bounces at uclibc.org] On
Behalf Of Peter Korsgaard
Sent: 2008 Oct 29 14:11
To: Daniel J Laird
Cc: buildroot at uclibc.org
Subject: Re: [Buildroot] LDFLAGS setting in buildroot
>>>>> "Daniel" == Daniel J Laird <daniel.j.laird@nxp.com> writes:
Daniel> I have been playing with using the AUTO_CONFIGURE_TARGET and it
seems to be going faster as you indicated but I have discovered an issue.
Daniel> I build a number of packages and as each one builds they update
the central cache file.
Daniel> However One of my packages configures before zlib is built.
Daniel> This means it caches zlib is unavailable.
Shouldn't that package then depend on zlib?
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot at uclibc.org
http://busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] LDFLAGS setting in buildroot
2008-10-29 10:10 ` Daniel J Laird
2008-10-29 14:11 ` Peter Korsgaard
@ 2008-10-29 14:48 ` Bernhard Reutner-Fischer
1 sibling, 0 replies; 22+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-29 14:48 UTC (permalink / raw)
To: buildroot
On Wed, Oct 29, 2008 at 11:10:19AM +0100, Daniel J Laird wrote:
>I have been playing with using the AUTO_CONFIGURE_TARGET and it seems to be going faster as you indicated but I have discovered an issue.
heh. I said "at least".
>
>I build a number of packages and as each one builds they update the central cache file.
>However One of my packages configures before zlib is built.
broken package. Fix it's dependencies.
>Do you see such issues as I cannot see how to make the cache file update with correct values after it has been told something does not exist.
This is strictly forbidden.
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2008-10-29 14:48 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-28 12:36 [Buildroot] LDFLAGS setting in buildroot Daniel J Laird
2008-10-28 13:18 ` Bernhard Reutner-Fischer
2008-10-28 13:35 ` Thomas Petazzoni
2008-10-28 13:45 ` Bernhard Reutner-Fischer
2008-10-28 14:08 ` Thomas Petazzoni
2008-10-28 15:31 ` Bernhard Reutner-Fischer
2008-10-28 16:00 ` Thomas Petazzoni
2008-10-28 16:07 ` Nick Peirson
2008-10-28 16:13 ` Bernhard Reutner-Fischer
2008-10-28 16:54 ` Steffen Schulz
2008-10-28 17:11 ` Daniel J Laird
2008-10-28 17:17 ` Bernhard Reutner-Fischer
2008-10-28 17:32 ` Daniel J Laird
2008-10-29 10:10 ` Daniel J Laird
2008-10-29 14:11 ` Peter Korsgaard
2008-10-29 14:17 ` Daniel Laird
2008-10-29 14:48 ` Bernhard Reutner-Fischer
2008-10-28 14:55 ` Daniel J Laird
2008-10-28 13:58 ` Daniel J Laird
2008-10-28 22:20 ` Thomas Petazzoni
2008-10-29 11:29 ` Thomas Petazzoni
2008-10-28 13:37 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox