All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH] freeradius: mark as incompatible with armv5
@ 2019-10-04 15:20 Trevor Gamblin
  2019-10-04 19:05 ` Adrian Bunk
  0 siblings, 1 reply; 3+ messages in thread
From: Trevor Gamblin @ 2019-10-04 15:20 UTC (permalink / raw)
  To: openembedded-devel

From: Trevor Gamblin <trevor.gamblin@windriver.com>

Freeradius fails to build for armv5:

| *** Warning: Linking the executable build/bin/local/radeapclient against the loadable module
| *** libfreeradius-server.so is not portable!
|
| *** Warning: Linking the executable build/bin/local/radeapclient against the loadable module
| *** libfreeradius-eap.so is not portable!
path -Wl,/yow-lpggp31/tgamblin/freeradius.build/tmp-glibc/work/armv5e-oe-linux-gnueabi/freeradius/3.0.19-r0/git/build/lib/local//.libs
/arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_compare_exchange_8'
/arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_load_8'
/arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_store_8'
| collect2: error: ld returned 1 exit status
| scripts/boiler.mk:630: recipe for target 'build/bin/local/radeapclient' failed

gcc does not supply 64-bit atomic operations, so freeradius cannot
be built. Marking as incompatible for armv5.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
---
 .../recipes-connectivity/freeradius/freeradius_3.0.19.bb        | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-networking/recipes-connectivity/freeradius/freeradius_3.0.19.bb b/meta-networking/recipes-connectivity/freeradius/freeradius_3.0.19.bb
index ded1a67ff..5f5556de3 100644
--- a/meta-networking/recipes-connectivity/freeradius/freeradius_3.0.19.bb
+++ b/meta-networking/recipes-connectivity/freeradius/freeradius_3.0.19.bb
@@ -228,3 +228,5 @@ FILES_${PN} =+ "${libdir}/rlm_*.so* ${libdir}/proto_*so*"
 
 RDEPENDS_${PN} += "perl"
 RDEPENDS_${PN}-utils = "${PN} perl"
+
+COMPATIBLE_HOST_armv5 = "null"
-- 
2.21.0



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

* Re: [meta-networking][PATCH] freeradius: mark as incompatible with armv5
  2019-10-04 15:20 [meta-networking][PATCH] freeradius: mark as incompatible with armv5 Trevor Gamblin
@ 2019-10-04 19:05 ` Adrian Bunk
  2019-10-07 11:53   ` Trevor Gamblin
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Bunk @ 2019-10-04 19:05 UTC (permalink / raw)
  To: Trevor Gamblin; +Cc: openembedded-devel

On Fri, Oct 04, 2019 at 11:20:18AM -0400, Trevor Gamblin wrote:
> From: Trevor Gamblin <trevor.gamblin@windriver.com>
> 
> Freeradius fails to build for armv5:
> 
> | *** Warning: Linking the executable build/bin/local/radeapclient against the loadable module
> | *** libfreeradius-server.so is not portable!
> |
> | *** Warning: Linking the executable build/bin/local/radeapclient against the loadable module
> | *** libfreeradius-eap.so is not portable!
> path -Wl,/yow-lpggp31/tgamblin/freeradius.build/tmp-glibc/work/armv5e-oe-linux-gnueabi/freeradius/3.0.19-r0/git/build/lib/local//.libs
> /arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_compare_exchange_8'
> /arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_load_8'
> /arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_store_8'
> | collect2: error: ld returned 1 exit status
> | scripts/boiler.mk:630: recipe for target 'build/bin/local/radeapclient' failed
> 
> gcc does not supply 64-bit atomic operations,

This is not true.

> so freeradius cannot be built. Marking as incompatible for armv5.
>...

What is needed is linking with -latomic, as is already done for other 
architectures.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed



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

* Re: [meta-networking][PATCH] freeradius: mark as incompatible with armv5
  2019-10-04 19:05 ` Adrian Bunk
@ 2019-10-07 11:53   ` Trevor Gamblin
  0 siblings, 0 replies; 3+ messages in thread
From: Trevor Gamblin @ 2019-10-07 11:53 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: openembedded-devel

On 10/4/19 3:05 PM, Adrian Bunk wrote:

> On Fri, Oct 04, 2019 at 11:20:18AM -0400, Trevor Gamblin wrote:
>> From: Trevor Gamblin <trevor.gamblin@windriver.com>
>>
>> Freeradius fails to build for armv5:
>>
>> | *** Warning: Linking the executable build/bin/local/radeapclient against the loadable module
>> | *** libfreeradius-server.so is not portable!
>> |
>> | *** Warning: Linking the executable build/bin/local/radeapclient against the loadable module
>> | *** libfreeradius-eap.so is not portable!
>> path -Wl,/yow-lpggp31/tgamblin/freeradius.build/tmp-glibc/work/armv5e-oe-linux-gnueabi/freeradius/3.0.19-r0/git/build/lib/local//.libs
>> /arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_compare_exchange_8'
>> /arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_load_8'
>> /arm-oe-linux-gnueabi/9.2.0/ld: build/lib/local/.libs/libfreeradius-radius.so: undefined reference to `__atomic_store_8'
>> | collect2: error: ld returned 1 exit status
>> | scripts/boiler.mk:630: recipe for target 'build/bin/local/radeapclient' failed
>>
>> gcc does not supply 64-bit atomic operations,
> This is not true.
>
>> so freeradius cannot be built. Marking as incompatible for armv5.
>> ...
> What is needed is linking with -latomic, as is already done for other
> architectures.
>
> cu
> Adrian
>
Sorry for the delay. I'll make the correction.


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

end of thread, other threads:[~2019-10-07 11:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-04 15:20 [meta-networking][PATCH] freeradius: mark as incompatible with armv5 Trevor Gamblin
2019-10-04 19:05 ` Adrian Bunk
2019-10-07 11:53   ` Trevor Gamblin

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.