Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] glibc: install libanl.so to target
@ 2017-02-23 11:11 Jesper Bækdahl
  2017-02-23 20:41 ` Thomas Petazzoni
  2017-02-24  9:03 ` [Buildroot] [PATCH v2 1/2] " Jesper Bækdahl
  0 siblings, 2 replies; 6+ messages in thread
From: Jesper Bækdahl @ 2017-02-23 11:11 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>
---
 package/glibc/glibc.mk | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
index c11f7cd..ee52539 100644
--- a/package/glibc/glibc.mk
+++ b/package/glibc/glibc.mk
@@ -101,9 +101,9 @@ endef
 #
 
 GLIBC_LIBS_LIB = \
-	ld*.so.* libc.so.* libcrypt.so.* libdl.so.* libgcc_s.so.* libm.so.*        \
-	libnsl.so.* libpthread.so.* libresolv.so.* librt.so.* libutil.so.*   \
-	libnss_files.so.* libnss_dns.so.* libmvec.so.*
+	ld*.so.* libanl.so.* libc.so.* libcrypt.so.* libdl.so.* libgcc_s.so.* \
+	libm.so.* libnsl.so.* libpthread.so.* libresolv.so.* librt.so.* \
+	libutil.so.* libnss_files.so.* libnss_dns.so.* libmvec.so.*
 
 ifeq ($(BR2_PACKAGE_GDB),y)
 GLIBC_LIBS_LIB += libthread_db.so.*
-- 
2.7.4

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

* [Buildroot] [PATCH 1/1] glibc: install libanl.so to target
  2017-02-23 11:11 [Buildroot] [PATCH 1/1] glibc: install libanl.so to target Jesper Bækdahl
@ 2017-02-23 20:41 ` Thomas Petazzoni
  2017-02-24  9:03 ` [Buildroot] [PATCH v2 1/2] " Jesper Bækdahl
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2017-02-23 20:41 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 23 Feb 2017 12:11:10 +0100, Jesper B?kdahl wrote:
> Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>

Thanks for your contribution. However, could you extend the commit log
to explain briefly in which situations is this library used?

In addition, you should also adjust the TOOLCHAIN_EXTERNAL_LIBS
variable in toolchain/toolchain-external/pkg-toolchain-external.mk to
be consistent.

Thanks!

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

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

* [Buildroot] [PATCH v2 1/2] glibc: install libanl.so to target
  2017-02-23 11:11 [Buildroot] [PATCH 1/1] glibc: install libanl.so to target Jesper Bækdahl
  2017-02-23 20:41 ` Thomas Petazzoni
@ 2017-02-24  9:03 ` Jesper Bækdahl
  2017-02-24  9:03   ` [Buildroot] [PATCH v2 2/2] toolchain-external: install libanl.so for glibc Jesper Bækdahl
  2017-02-25 15:44   ` [Buildroot] [PATCH v2 1/2] glibc: install libanl.so to target Thomas Petazzoni
  1 sibling, 2 replies; 6+ messages in thread
From: Jesper Bækdahl @ 2017-02-24  9:03 UTC (permalink / raw)
  To: buildroot

libanl.so is needed for asynchronous network address and service
translation, declared in netdb.h

Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>

---
Changes v1 -> v2:
 - Added info on libanl.so usage

Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>
---
 package/glibc/glibc.mk | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
index c11f7cd..ee52539 100644
--- a/package/glibc/glibc.mk
+++ b/package/glibc/glibc.mk
@@ -101,9 +101,9 @@ endef
 #
 
 GLIBC_LIBS_LIB = \
-	ld*.so.* libc.so.* libcrypt.so.* libdl.so.* libgcc_s.so.* libm.so.*        \
-	libnsl.so.* libpthread.so.* libresolv.so.* librt.so.* libutil.so.*   \
-	libnss_files.so.* libnss_dns.so.* libmvec.so.*
+	ld*.so.* libanl.so.* libc.so.* libcrypt.so.* libdl.so.* libgcc_s.so.* \
+	libm.so.* libnsl.so.* libpthread.so.* libresolv.so.* librt.so.* \
+	libutil.so.* libnss_files.so.* libnss_dns.so.* libmvec.so.*
 
 ifeq ($(BR2_PACKAGE_GDB),y)
 GLIBC_LIBS_LIB += libthread_db.so.*
-- 
2.7.4

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

* [Buildroot] [PATCH v2 2/2] toolchain-external: install libanl.so for glibc
  2017-02-24  9:03 ` [Buildroot] [PATCH v2 1/2] " Jesper Bækdahl
@ 2017-02-24  9:03   ` Jesper Bækdahl
  2017-02-25 15:44     ` Thomas Petazzoni
  2017-02-25 15:44   ` [Buildroot] [PATCH v2 1/2] glibc: install libanl.so to target Thomas Petazzoni
  1 sibling, 1 reply; 6+ messages in thread
From: Jesper Bækdahl @ 2017-02-24  9:03 UTC (permalink / raw)
  To: buildroot

libanl.so is needed for asynchronous network address and service
translation, declared in netdb.h

Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>
---
 toolchain/toolchain-external/pkg-toolchain-external.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/toolchain/toolchain-external/pkg-toolchain-external.mk b/toolchain/toolchain-external/pkg-toolchain-external.mk
index 6658875..11a1bf5 100644
--- a/toolchain/toolchain-external/pkg-toolchain-external.mk
+++ b/toolchain/toolchain-external/pkg-toolchain-external.mk
@@ -124,7 +124,7 @@ endif # ! no threads
 endif
 
 ifeq ($(BR2_TOOLCHAIN_EXTERNAL_GLIBC),y)
-TOOLCHAIN_EXTERNAL_LIBS += libnss_files.so.* libnss_dns.so.* libmvec.so.*
+TOOLCHAIN_EXTERNAL_LIBS += libnss_files.so.* libnss_dns.so.* libmvec.so.* libanl.so.*
 endif
 
 ifeq ($(BR2_TOOLCHAIN_EXTERNAL_MUSL),y)
-- 
2.7.4

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

* [Buildroot] [PATCH v2 1/2] glibc: install libanl.so to target
  2017-02-24  9:03 ` [Buildroot] [PATCH v2 1/2] " Jesper Bækdahl
  2017-02-24  9:03   ` [Buildroot] [PATCH v2 2/2] toolchain-external: install libanl.so for glibc Jesper Bækdahl
@ 2017-02-25 15:44   ` Thomas Petazzoni
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2017-02-25 15:44 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 24 Feb 2017 10:03:07 +0100, Jesper B?kdahl wrote:
> libanl.so is needed for asynchronous network address and service
> translation, declared in netdb.h
> 
> Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>
> 
> ---
> Changes v1 -> v2:
>  - Added info on libanl.so usage

Applied to master, thanks.

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

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

* [Buildroot] [PATCH v2 2/2] toolchain-external: install libanl.so for glibc
  2017-02-24  9:03   ` [Buildroot] [PATCH v2 2/2] toolchain-external: install libanl.so for glibc Jesper Bækdahl
@ 2017-02-25 15:44     ` Thomas Petazzoni
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2017-02-25 15:44 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 24 Feb 2017 10:03:08 +0100, Jesper B?kdahl wrote:
> libanl.so is needed for asynchronous network address and service
> translation, declared in netdb.h
> 
> Signed-off-by: Jesper B?kdahl <jbb@gamblify.com>
> ---
>  toolchain/toolchain-external/pkg-toolchain-external.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

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

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

end of thread, other threads:[~2017-02-25 15:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-23 11:11 [Buildroot] [PATCH 1/1] glibc: install libanl.so to target Jesper Bækdahl
2017-02-23 20:41 ` Thomas Petazzoni
2017-02-24  9:03 ` [Buildroot] [PATCH v2 1/2] " Jesper Bækdahl
2017-02-24  9:03   ` [Buildroot] [PATCH v2 2/2] toolchain-external: install libanl.so for glibc Jesper Bækdahl
2017-02-25 15:44     ` Thomas Petazzoni
2017-02-25 15:44   ` [Buildroot] [PATCH v2 1/2] glibc: install libanl.so to target Thomas Petazzoni

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