Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] Nano runtime error
@ 2009-10-23  7:15 Dan Pattison
       [not found] ` <4AE303B6.4090605@ethertek.ca>
  0 siblings, 1 reply; 5+ messages in thread
From: Dan Pattison @ 2009-10-23  7:15 UTC (permalink / raw)
  To: buildroot

Hello List,

With a fresh git clone, configured for Atmel Arm AT91SAMG20, EABI. Nano 
compiles without problem, but I get the error below when running on the 
target.

# nano
nano: can't resolve symbol '__ctype_b'
#

Can someone send me a working ARM binary of nano to test?

Thanks,

-- 
Dan Pattison
Ethertek Circuits

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

* [Buildroot] Nano runtime error
       [not found] ` <4AE303B6.4090605@ethertek.ca>
@ 2009-10-24 18:31   ` Peter Korsgaard
  2009-10-24 18:49     ` Dan Pattison
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2009-10-24 18:31 UTC (permalink / raw)
  To: buildroot

>>>>> "Dan" == Dan Pattison <dan.pattison@ethertek.ca> writes:

 Dan> Hello Peter,

Hi,

Please don't mail me directly - That's what we have the mailing list
for.

 Dan> I asked my question on the mailing list but did not receive a
 Dan> reply.

You are too impatient - This is no commercial support system, you only
sent you mail yesterday.

 Dan> Could you please send me the nano binary file compiled for
 Dan> ATMEL ARM AT91SAMG20. I am having problems making mine work on my ARM
 Dan> hardware.

No I cannot. I don't have a rootfs with nano at hand, and even if I did,
the result would presumably be the same.

 Dan> I would like to know if there is a problem with my development
 Dan> environment, or if it is a nano compiling issue. I keep getting
 Dan> the error nano: can't resolve symbol '__ctype_b' when running nano
 Dan> on our hardware.

Have you tried debugging it? Do your C library have a __ctype_b symbol?
From a quick google search there seem(ed) to be some issues with
__ctype_b and uclibc with locales enabled - Do you have locales enabled?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] Nano runtime error
  2009-10-24 18:31   ` Peter Korsgaard
@ 2009-10-24 18:49     ` Dan Pattison
  2009-10-24 19:18       ` Peter Korsgaard
  2009-10-25 11:54       ` Will Newton
  0 siblings, 2 replies; 5+ messages in thread
From: Dan Pattison @ 2009-10-24 18:49 UTC (permalink / raw)
  To: buildroot

Hello Peter and List,

Sorry for my impatience. I realize this is no commercial support system, 
I stand corrected.

Locals is not enabled in uclibc.

Best Regards,

Dan.

Peter Korsgaard wrote:
>>>>>> "Dan" == Dan Pattison <dan.pattison@ethertek.ca> writes:
>>>>>>             
>
>  Dan> Hello Peter,
>
> Hi,
>
> Please don't mail me directly - That's what we have the mailing list
> for.
>
>  Dan> I asked my question on the mailing list but did not receive a
>  Dan> reply.
>
> You are too impatient - This is no commercial support system, you only
> sent you mail yesterday.
>
>  Dan> Could you please send me the nano binary file compiled for
>  Dan> ATMEL ARM AT91SAMG20. I am having problems making mine work on my ARM
>  Dan> hardware.
>
> No I cannot. I don't have a rootfs with nano at hand, and even if I did,
> the result would presumably be the same.
>
>  Dan> I would like to know if there is a problem with my development
>  Dan> environment, or if it is a nano compiling issue. I keep getting
>  Dan> the error nano: can't resolve symbol '__ctype_b' when running nano
>  Dan> on our hardware.
>
> Have you tried debugging it? Do your C library have a __ctype_b symbol?
> >From a quick google search there seem(ed) to be some issues with
> __ctype_b and uclibc with locales enabled - Do you have locales enabled?
>
>   
> ------------------------------------------------------------------------
>
>
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 8.5.423 / Virus Database: 270.14.29/2455 - Release Date: 10/24/09 06:43:00
>
>   

-- 
Dan Pattison
Ethertek Circuits

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

* [Buildroot] Nano runtime error
  2009-10-24 18:49     ` Dan Pattison
@ 2009-10-24 19:18       ` Peter Korsgaard
  2009-10-25 11:54       ` Will Newton
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2009-10-24 19:18 UTC (permalink / raw)
  To: buildroot

>>>>> "Dan" == Dan Pattison <dan.pattison@ethertek.ca> writes:

 Dan> Hello Peter and List,
 Dan> Sorry for my impatience. I realize this is no commercial support
 Dan> system, I stand corrected.

 Dan> Locals is not enabled in uclibc.

FYI, I just did a build for i386 (I already had a partial build
available), and here nano works.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] Nano runtime error
  2009-10-24 18:49     ` Dan Pattison
  2009-10-24 19:18       ` Peter Korsgaard
@ 2009-10-25 11:54       ` Will Newton
  1 sibling, 0 replies; 5+ messages in thread
From: Will Newton @ 2009-10-25 11:54 UTC (permalink / raw)
  To: buildroot

On Sat, Oct 24, 2009 at 6:49 PM, Dan Pattison <dan.pattison@ethertek.ca> wrote:
> Hello Peter and List,
>
> Sorry for my impatience. I realize this is no commercial support system, I
> stand corrected.
>
> Locals is not enabled in uclibc.

The error "can't resolve symbol '__ctype_b'" occurs when you build a
binary with a toolchain with locales support disabled and try and run
it with uClibc with locales support enabled.

I would try doing a full rebuild of toolchain and filesystem.

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

end of thread, other threads:[~2009-10-25 11:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-23  7:15 [Buildroot] Nano runtime error Dan Pattison
     [not found] ` <4AE303B6.4090605@ethertek.ca>
2009-10-24 18:31   ` Peter Korsgaard
2009-10-24 18:49     ` Dan Pattison
2009-10-24 19:18       ` Peter Korsgaard
2009-10-25 11:54       ` Will Newton

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