Search the web
Sign In
New User? Sign Up
gnuarm
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4058 - 4087 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4058
Hi, I'm after some help from the experts. My build is failing due to a linking problem. It seems to be a problem with linking in liba. The error is complaining...
Peter Homann
homannp
Offline Send Email
Aug 5, 2008
11:53 am
4059
... My reaction is that the linker already knows about those sections and that you are overrunning the allowable length of one of them into the space set aside...
Tom Walsh
twalsh0001
Offline Send Email
Aug 5, 2008
12:04 pm
4060
It is telling you that .text and the .data load area overlay eachother. I think the problem is likely to be due to the AT() bit in    .data : AT (ADDR(.text)...
Charles Manning
embeddedjanitor
Offline Send Email
Aug 5, 2008
9:25 pm
4061
Hi Charles, Tom, Doing the change as Charles suggested has resolved the overlay problem. Thanks for that. I'm still getting the undefined reference errors...
Peter Homann
homannp
Offline Send Email
Aug 5, 2008
11:36 pm
4062
... I will almost guarantee that this is due to a linker ordering issue. The linker will only link in the order you specify. Lets say you have library a that...
Charles Manning
embeddedjanitor
Offline Send Email
Aug 5, 2008
11:42 pm
4063
Hi Charles, I appreciate the help. I think that libc.a is not being found. I have the line; EXTRA_LIBDIRS+= C:/Program Files/CodeSourcery/Sourcery G++ ...
Peter Homann
homannp
Offline Send Email
Aug 6, 2008
12:13 am
4064
... Aaargh! Mixing Windows and POSIX is always a bit ugly. Perhaps you can put them in quotes. EXTRA_LIBDIRS+= "C:/Program Files/CodeSourcery/Sourcery G++ ...
Charles Manning
embeddedjanitor
Offline Send Email
Aug 6, 2008
12:54 am
4065
Or, replace "Program Files" with "Progra~1", which is the usual short (8.3 DOS compatible) version. Check the help for the "dir" command, one of the options...
Marc Sandusky
notptlmark
Offline Send Email
Aug 6, 2008
5:13 am
4066
Hi all, With lots of help from various sources, the problem was to do with the libraries not including syscall. I solved it by adding syscall.c into the...
Peter Homann
homannp
Offline Send Email
Aug 6, 2008
6:56 am
4067
Hi, all, I am using the GNUARM binary (bu-2.17_gcc-4.1.1-c-c++_nl-1.14.0_gi- 6.5.exe) to build u-boot for pxa270. It turned out that this binary is built using...
pw8_nz
Offline Send Email
Aug 14, 2008
2:20 am
4068
I have bee searching for quite a while for a good C reference for the GNU ARM c compiler and I am not having much luck. Any good books? Can anyone point to a...
artsaagluap
Offline Send Email
Aug 14, 2008
3:52 am
4069
... By far, the best book for learning C is the original book by Kernighan and Ritchie (the developers of the C language), entitled "The C Programming...
Dave McGuire
purringdave
Offline Send Email
Aug 14, 2008
3:57 am
4070
Hi, Each compiler is different and cannot be trusted. Some programmers have a file like "portable.h" that they change for each compiler. They just always say...
Eric Haver
havereric2
Offline Send Email
Aug 14, 2008
5:25 am
4071
Hi, for this problem there is stdint.h. For details see http://en.wikipedia.org/wiki/Stdint.h Now days most standard library supports it. Foltos...
Foltos
foglaltid
Offline Send Email
Aug 14, 2008
8:29 am
4072
Hi, try limits.h. Info here http://en.wikipedia.org/wiki/Limits.h Foltos...
Foltos
foglaltid
Offline Send Email
Aug 14, 2008
8:35 am
4073
... This is usually avoided because it is non portable and vary problematic. When it is absolutely nescessary you can use a *union* of your array and another...
Alain M.
alainm3
Offline Send Email
Aug 14, 2008
4:25 pm
4074
... If you are ever importing/exporting binary data from/to the outside world then proper data marshalling is important. This can also make your code 100% ...
Charles Manning
embeddedjanitor
Offline Send Email
Aug 14, 2008
11:06 pm
4075
... Yeah, but. In reality, we all have done this, probably much more often than we wished... Don't get discouraged over the portability issues, just start...
Tom Walsh
twalsh0001
Offline Send Email
Aug 15, 2008
1:23 am
4076
... It's a Gnu compiler, so the gnu manual covers it pretty well -- www.gnu.org. You've already been pointed to K&R for a manual. I think K&R is excellent to...
timwescott
Offline Send Email
Aug 15, 2008
4:05 pm
4077
... I second this recommendation; it's a very good book! -Dave -- Dave McGuire Port Charlotte, FL...
Dave McGuire
purringdave
Offline Send Email
Aug 15, 2008
8:26 pm
4078
hello every1, i would like to know the meaning of the error which i got when i compiled my program using GNU ArM compiller,, /cygdrive/c/Program ...
urjust2oocool
Offline Send Email
Aug 18, 2008
6:44 am
4079
... It seems you have two problems: First, the 1.elf code is using hardware FP and it shouldn't be. I have no idea where 1.elf came from (it doesn't seem like...
rtstofer
Offline Send Email
Aug 18, 2008
3:23 pm
4080
1 is actaully the name of my project...... wen u genrate an hex file... the files comes as 1.hex.. similarly it mite be another downloadable file called...
Cool Dude
urjust2oocool
Offline Send Email
Aug 19, 2008
5:15 am
4081
hi richard, i didnt understand what u meant by.... " I would be very nervous about embedded blanks in paths under Windows. I would surround the paths with " "...
Cool Dude
urjust2oocool
Offline Send Email
Aug 19, 2008
8:54 am
4082
... You are using a compiler system that was developed under unix, then someone ported it to Windows. Windows and unix have some very different ...
Tom Walsh
twalsh0001
Offline Send Email
Aug 19, 2008
12:46 pm
4083
Hi, I have a problem restoring registers r0-r15 with this instruction LDMIA   r13,{r0-r15}^ on OMAP1610. only registers from r0-r12 & r15 are restored with...
Neagoe Gabirel
neagoegab
Offline Send Email
Aug 19, 2008
3:15 pm
4084
Couldn't find a datasheet for the OMAP1610. But I guess your "problem" is that you're changing modes. r13 & r14 are normally banked registers in all modes. See...
Frederik Kriewitz
freddy43644
Offline Send Email
Aug 19, 2008
3:46 pm
4085
Hi, Use a NOP (or MOV r0,r0) after this instruction. G. To: gnuarm@...: neagoegab@...: Tue, 19 Aug 2008 08:15:40 -0700Subject:...
Gabi Feceoru
spinoff_gabi
Online Now Send Email
Aug 19, 2008
4:06 pm
4086
i tried building the example proj they had provided........... but it still shows the same error.. i followed the procedure as told by them. Raj ... From: Tom...
Cool Dude
urjust2oocool
Offline Send Email
Aug 20, 2008
8:43 am
4087
After installing 4.1.1 on x86, I was able to compile some demo arm code and even load that into GDB and step thru in the simulator. I am not able to do that...
tclarke1
Offline Send Email
Aug 20, 2008
11:17 pm
Messages 4058 - 4087 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help