[uClinux-dev] Configure script cannot find libraries

2007-05-12 Thread Sven Johnsson
Hi, I am trying to build linphone for my Coldfire board. I have built the necessary libraries and put them into the include and lib paths for my toolchain. When I finally run the configure script for linphone, I get these last two lines : checking for readline in -lreadline... no configure: erro

Re: [uClinux-dev] Using math.h in uClinux applications

2007-05-03 Thread Sven Johnsson
Doug, I have not used a Makefile at all, I just compile by typing "gcc file.c -o file -lm" Regards, Sven --- Doug Kehn wrote: Did you also add -lm to the Makefile? For example, $(EXEC): $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) -lm $(LDLIBS) Regards, ...doug ___

[uClinux-dev] Using math.h in uClinux applications

2007-05-02 Thread Sven Johnsson
Best Regards, Sven Johnsson ___ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by uclinux-dev@uclinux.org To unsubscribe see: http://mailman.uclinux.org/mailman/options/uc

Re: [uClinux-dev] Applications run too slow

2007-04-25 Thread Sven Johnsson
Mike, Thanks for your advice on cache on Coldfire processors. I have tried to find a way to enable it but I haven't succeeded yet. Can you tell me exactly how to do it? I'm looking for a way to enable cache at boot time. Regards, Sven From: Michael Broughton <[EMAIL PROTECTED]> Subject: Re: [

[uClinux-dev] Re: Re: How to use mcfcache.h on Coldfire?

2007-04-22 Thread Sven Johnsson
Hi Greg, How can I tell if cache is enabled or not? I just want it to be enabled... Regards, Sven Greg wrote: Hi Sven, Sven Johnsson wrote: The mcfcache.h contains an assembly macro CACHE_ENABLE, which I want to use. -How do I call It? Well, it is currently only used from the

[uClinux-dev] How to use mcfcache.h on Coldfire?

2007-04-19 Thread Sven Johnsson
Hello, The mcfcache.h contains an assembly macro CACHE_ENABLE, which I want to use. -How do I call It? Best Regards, Sven Johnsson ___ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This

Re: [uClinux-dev] Applications run too slow

2007-04-16 Thread Sven Johnsson
Subject: Re: [uClinux-dev] Applications run too slow To: uClinux development list Hi Sven, Sven Johnsson wrote: > I have executed a Dhrystone 2.1 benchmark on my uClinux system and get > an extremely low result, about 0.0259 DMIPS (I also used a stopwatch > to confirm it). The datash

[uClinux-dev] Applications run too slow

2007-04-14 Thread Sven Johnsson
have been. -Does anyone know a way to give an application more CPU time? Best Regards, Sven Johnsson ___ uClinux-dev mailing list [EMAIL PROTECTED] http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by [EMAIL PROTECTE

[uClinux-dev] Possible DMA modes?

2007-04-02 Thread Sven Johnsson
Regards, Sven Johnsson ___ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by uclinux-dev@uclinux.org To unsubscribe see: http://mailman.uclinux.org/mailman/options/uclinux-dev

[uClinux-dev] ALSA on uClinux and Coldfire?

2007-03-22 Thread Sven Johnsson
Hello, I am interested in writing an ALSA driver for my system containing a Coldfire processor running uClinux 2.6.16. Is it possible to use ALSA with uClinux? Best Regards, Sven Johnsson ___ uClinux-dev mailing list uClinux-dev@uclinux.org http

Re: [uClinux-dev] BUG: scheduling while atomic

2007-03-20 Thread Sven Johnsson
Aron, It seems like you are accessing ifconfig from an atomic context such as an interrupt service routine, a kernel timer handler or some code which is not allowed to sleep. Ifconfig probably uses sleep or some other scheduling, which is not allowed to run in an atomic context. One workaround is