Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] aircrack-ng: fix statically linked build
@ 2013-05-15 13:00 Peter Korsgaard
  2013-05-16  5:52 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2013-05-15 13:00 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=bed1490d0f58dc963d2144f2fe6b705f9f36d848
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixe the build failure visible at
http://autobuild.buildroot.net/results/2441d8b62323a00f32f2edb7cb781dda71ff7f68

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/aircrack-ng/aircrack-ng.mk |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/package/aircrack-ng/aircrack-ng.mk b/package/aircrack-ng/aircrack-ng.mk
index c6574f1..a36cf34 100644
--- a/package/aircrack-ng/aircrack-ng.mk
+++ b/package/aircrack-ng/aircrack-ng.mk
@@ -20,9 +20,12 @@ else
 	AIRCRACK_NG_MAKE_OPTS = sqlite=false
 endif
 
+AIRCRACK_NG_LDFLAGS = -lz \
+	$(if $(BR2_PREFER_STATIC_LIB),-ldl -lpthread)
+
 define AIRCRACK_NG_BUILD_CMDS
 	$(TARGET_CONFIGURE_OPTS) $(MAKE1) CC="$(TARGET_CC)" LD="$(TARGET_LD)" \
-		LDFLAGS="$(TARGET_LDFLAGS) -lz" \
+		LDFLAGS="$(AIRCRACK_NG_LDFLAGS)" \
 		-C $(@D) $(AIRCRACK_NG_MAKE_OPTS) all
 endef
 

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

* [Buildroot] [git commit] aircrack-ng: fix statically linked build
  2013-05-15 13:00 [Buildroot] [git commit] aircrack-ng: fix statically linked build Peter Korsgaard
@ 2013-05-16  5:52 ` Arnout Vandecappelle
  2013-05-16  7:20   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2013-05-16  5:52 UTC (permalink / raw)
  To: buildroot

On 15/05/13 15:00, Peter Korsgaard wrote:
> commit: http://git.buildroot.net/buildroot/commit/?id=bed1490d0f58dc963d2144f2fe6b705f9f36d848
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>
> Fixe the build failure visible at
> http://autobuild.buildroot.net/results/2441d8b62323a00f32f2edb7cb781dda71ff7f68
>
> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
> ---
>   package/aircrack-ng/aircrack-ng.mk |    5 ++++-
>   1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/package/aircrack-ng/aircrack-ng.mk b/package/aircrack-ng/aircrack-ng.mk
> index c6574f1..a36cf34 100644
> --- a/package/aircrack-ng/aircrack-ng.mk
> +++ b/package/aircrack-ng/aircrack-ng.mk
> @@ -20,9 +20,12 @@ else
>   	AIRCRACK_NG_MAKE_OPTS = sqlite=false
>   endif
>
> +AIRCRACK_NG_LDFLAGS = -lz \
> +	$(if $(BR2_PREFER_STATIC_LIB),-ldl -lpthread)

  You're missing $(TARGET_LDFLAGS) here.


  Regards,
  Arnout

> +
>   define AIRCRACK_NG_BUILD_CMDS
>   	$(TARGET_CONFIGURE_OPTS) $(MAKE1) CC="$(TARGET_CC)" LD="$(TARGET_LD)" \
> -		LDFLAGS="$(TARGET_LDFLAGS) -lz" \
> +		LDFLAGS="$(AIRCRACK_NG_LDFLAGS)" \
>   		-C $(@D) $(AIRCRACK_NG_MAKE_OPTS) all
>   endef
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [git commit] aircrack-ng: fix statically linked build
  2013-05-16  5:52 ` Arnout Vandecappelle
@ 2013-05-16  7:20   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2013-05-16  7:20 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 Arnout> On 15/05/13 15:00, Peter Korsgaard wrote:
 >> commit: http://git.buildroot.net/buildroot/commit/?id=bed1490d0f58dc963d2144f2fe6b705f9f36d848
 >> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
 >> 
 >> Fixe the build failure visible at
 >> http://autobuild.buildroot.net/results/2441d8b62323a00f32f2edb7cb781dda71ff7f68
 >> 
 >> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
 >> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
 >> ---
 >> package/aircrack-ng/aircrack-ng.mk |    5 ++++-
 >> 1 files changed, 4 insertions(+), 1 deletions(-)
 >> 
 >> diff --git a/package/aircrack-ng/aircrack-ng.mk b/package/aircrack-ng/aircrack-ng.mk
 >> index c6574f1..a36cf34 100644
 >> --- a/package/aircrack-ng/aircrack-ng.mk
 >> +++ b/package/aircrack-ng/aircrack-ng.mk
 >> @@ -20,9 +20,12 @@ else
 >> AIRCRACK_NG_MAKE_OPTS = sqlite=false
 >> endif
 >> 
 >> +AIRCRACK_NG_LDFLAGS = -lz \
 >> +	$(if $(BR2_PREFER_STATIC_LIB),-ldl -lpthread)

 Arnout>  You're missing $(TARGET_LDFLAGS) here.

Argh, indeed. Will fix.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-05-16  7:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-15 13:00 [Buildroot] [git commit] aircrack-ng: fix statically linked build Peter Korsgaard
2013-05-16  5:52 ` Arnout Vandecappelle
2013-05-16  7:20   ` Peter Korsgaard

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