Thank you for your suggestion. One more clarification is uClinux comes with
a gcc? do i need to cross compile my aplication on my desktop to make it run
on uclinux?

On Tue, Oct 5, 2010 at 9:30 PM, <uclinux-dev-requ...@uclinux.org> wrote:

> Send uClinux-dev mailing list submissions to
>        uclinux-dev@uclinux.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
> or, via email, send a message with subject or body 'help' to
>        uclinux-dev-requ...@uclinux.org
>
> You can reach the person managing the list at
>        uclinux-dev-ow...@uclinux.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of uClinux-dev digest..."
>
>
> Today's Topics:
>
>   1. Installing UCLinux to port application (Parvathy Sasikala)
>   2. Re: Installing UCLinux to port application (Wan Mohd Fairuz)
>   3. How to echo binary data in sash or hush shell (Cao Sy Le)
>   4. signal/c++ exception issue (g...@novadsp.com)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 5 Oct 2010 10:28:41 +0530
> From: Parvathy Sasikala <parvathy.sasik...@gmail.com>
> Subject: [uClinux-dev] Installing UCLinux to port application
> To: uClinux-dev@uclinux.org
> Message-ID:
>        <aanlktimcrvrm9mt-y3t53fbdbaf8qwxk1zzy2aury...@mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi all I am newbie in Embedded linux. Please help me to get out of a
> problem. Thanks in advance to all of you who spent you valuable time
> reading
> this.
>
> Problem:
>
> I need to compile a c code which was written for an embedded application
> and
> need to simulate the embedded application with out  the board. The
> application was written for a coldfire mcf 5471 board.
>
> a.       Do uCLinux has an inbuilt gcc compiler so that I can compile the
> code in uclinux.
>
> b.      My development is having fedora 9. Can I have an emulator to give a
> virtual board effect. And can I install uCLinux on top of the emulator. If
> yes please suggest some emulators.
>
> c.       Other than is there any way to compile that application.
>
> Waiting for Reply.. Once again Thanks to all :)
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://mailman.uclinux.org/pipermail/uclinux-dev/attachments/20101005/475bc86b/attachment-0001.html
>
> ------------------------------
>
> Message: 2
> Date: Tue, 5 Oct 2010 09:37:55 +0200
> From: Wan Mohd Fairuz <wanmohdfai...@mckk9903.com>
> Subject: Re: [uClinux-dev] Installing UCLinux to port application
> To: uClinux development list <uclinux-dev@uclinux.org>
> Message-ID: <0c4bc55b-c758-4f3f-88ca-27ce0ce7e...@mckk9903.com>
> Content-Type: text/plain;       charset=us-ascii;       format=flowed;
>  delsp=yes
>
> Try to use skyeye simulator. Maybe it will help you.
>
> Sent from my iPhone
>
> On 5 oct. 2010, at 06:58 AM, Parvathy Sasikala <
> parvathy.sasik...@gmail.com
>  > wrote:
>
> > Hi all I am newbie in Embedded linux. Please help me to get out of a
> > problem. Thanks in advance to all of you who spent you valuable time
> > reading this.
> >
> > Problem:
> >
> > I need to compile a c code which was written for an embedded
> > application and need to simulate the embedded application with out
> > the board. The application was written for a coldfire mcf 5471 board.
> >
> > a.       Do uCLinux has an inbuilt gcc compiler so that I can
> > compile the code in uclinux.
> >
> > b.      My development is having fedora 9. Can I have an emulator to
> > give a virtual board effect. And can I install uCLinux on top of the
> > emulator. If yes please suggest some emulators.
> >
> > c.       Other than is there any way to compile that application.
> >
> > Waiting for Reply.. Once again Thanks to all :)
> >
> >
> >
> >
> >
> > _______________________________________________
> > 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
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 5 Oct 2010 16:17:53 +0700
> From: Cao Sy Le <caosyle....@gmail.com>
> Subject: [uClinux-dev] How to echo binary data in sash or hush shell
> To: uclinux-dev@uclinux.org
> Message-ID:
>        <aanlkti=wyzccp6wvy6wk8yce7sgldkjqd_ibn2osj...@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi all.
> I want to echo some binary data to a GSM modem. I could do it well on
> Ubuntu (bash shell) like this:
> echo at+cmgs=\"123456\"$'\r\n'
> and it write (at+cmgs="123456"<cr><lf>) to modem
> But on sash and hush shell I couldn't do the same.
> Plz tell me some way to echo binary data on those shell.
> Thanks.
>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 05 Oct 2010 13:58:27 +0100
> From: "g...@novadsp.com" <g...@novadsp.com>
> Subject: [uClinux-dev] signal/c++ exception issue
> To: uClinux-dev@uclinux.org
> Message-ID: <4cab20f3.1060...@novadsp.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
>  I've got an extremely simple SIGINT handler that throws a C++
> exception to ensure proper cleanup etc. I can see from console spew that
> the signal handler is being called but the exception is not caught. What
> appears is more generic:
>
> terminate called after throwing an instance of 'signal_exception'
> Abort
>
> then back to the command line. All code within main() is in a try/catch
> block with the correct exception signatures etc. g++ switches are
> -fexceptions -Wall
>
> Using the latest CodeSourcery g++  building for ucLinux/Coldfire m5280
> kernel 2.4.22
>
> Apologies if there is a better forum for this question. Any thoughts
> most welcome.
>
> TIA
>
> Jerry
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://mailman.uclinux.org/pipermail/uclinux-dev/attachments/20101005/dc39a903/attachment-0001.html
>
> ------------------------------
>
> _______________________________________________
> 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
>
> End of uClinux-dev Digest, Vol 90, Issue 2
> ******************************************
>
_______________________________________________
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

Reply via email to