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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 3610 - 3639 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3610
I'm receiving the error "Error: alignment too large: 15 assumed" for the assembly line ".align DCACHE_LINE " where DCACHE_LINE is equ to 0x20 or 32 dec. Is...
dbrazeau2048
Offline Send Email
Oct 1, 2007
11:47 pm
3611
... You should use 5 as alignment, see gas documentation: http://sourceware.org/binutils/docs-2.18/as/Align.html#Align Laurent...
Laurent Desnogues
ldesnogu
Offline Send Email
Oct 2, 2007
12:55 pm
3612
... I'm a little confused about how this works. i.e. "For example `.align 3' advances the location counter until it a multiple of 8" Does this mean .align 3...
dbrazeau2048
Offline Send Email
Oct 2, 2007
6:16 pm
3613
I recently was bitten by an interesting problem that should probably be noted in the GNUARM documentation: The gcc optimization level 2 or higher will delete...
David Albert
dave_albert
Offline Send Email
Oct 2, 2007
6:38 pm
3614
... You did not get it :) For ARM, the .align will skip to the next multiple of 1 << arg (i.e. 2 ^ arg). So .align 3 aligns to the next multiple of 8, while...
Laurent Desnogues
ldesnogu
Offline Send Email
Oct 2, 2007
7:30 pm
3615
... Thanks for providing a concise test case that fails. Are you sure the optimizer is doing what you think it's doing? What happens if you qualify b as: int *...
Ralph Hempel
ralphhempel
Offline Send Email
Oct 2, 2007
7:39 pm
3616
hello every body, I used the steps of gnuarm support to build binutils gcc and newlib for arm-elf target. Every thing is OK. But when i use it i need threads...
chahira
chahira_mans...
Offline Send Email
Oct 3, 2007
10:55 am
3617
hello chahira try to configure with the option "--enable-threads --disable-shared " without = posix : -->./configure --target=arm- elf --prefix=/sw/...
omar ghorbel
oghorbel
Offline Send Email
Oct 3, 2007
11:18 am
3618
I am having a little trouble using wildcards in my make file this is what I have: %.obj : %.asm @echo File: $*.asm @$(ASM) $(ASM_FLAGS) GNU_$*.asm @cp...
dbrazeau2048
Offline Send Email
Oct 3, 2007
11:03 pm
3619
... From the console type: 'info make', then read over the tutorial makefiles are not scripts TomW -- Tom Walsh - WN3L - Embedded Systems Consultant ...
Tom Walsh
twalsh0001
Offline Send Email
Oct 3, 2007
11:23 pm
3620
Hello every body, thank u so much omar for ur answer , I used the new configuration --enable-threads ( without posix) every thing is OK , BUT when i use the...
chahira
chahira_mans...
Offline Send Email
Oct 4, 2007
7:52 am
3621
I am trying to link my code and I keep getting the errors: c:/src/bin/bin/../lib/gcc/arm-elf/4.1.1/../../../../arm-elf/bin/ld.exe ... lib\libg.a(div.o) uses...
dbrazeau2048
Offline Send Email
Oct 5, 2007
1:11 am
3622
What you suggest is one of several ways to address the problem (see generated code below). However although it results in more-or-less proper code...
David Albert
dave_albert
Offline Send Email
Oct 5, 2007
1:16 am
3623
Hi, Because a NULL pointer dereference is undefined, the compiler is free to have arbitrary behavior after that point. What gcc does here is completely valid...
Adam Goode
mrhappypizza
Online Now Send Email
Oct 5, 2007
1:35 pm
3624
... Adam, thanks for a really good explanation along with the pointers :-) I constantly find new things out even after 25 years of doing this. I always keep my...
Ralph Hempel
ralphhempel
Offline Send Email
Oct 5, 2007
2:09 pm
3625
This is controlled using a compile time option which was selected when GNUARM was built. We adapt our project to GNUARM rather than rebuilding libg.a compile...
glen_biagioni
Offline Send Email
Oct 5, 2007
2:48 pm
3626
I'm building gnu arm tools from gcc-4.2.1, but I'm running into some issues using them, specifically with interwork. I *think* I've tracked it down to the...
Rick Mann
latencyzero
Online Now Send Email
Oct 6, 2007
8:39 am
3627
Hi, I posted this question on the lpc2000 group, but I'm still stuck! I have installed gnuarm + eclipse + openocd on slackware 11, and transferred my projects...
tugela_tony
Offline Send Email
Oct 8, 2007
1:30 pm
3628
there must also be a runtime initialization that copies the .data to ram before main starts. Usualy it is part of rtl.S Alain...
Alain M.
alainm3
Offline Send Email
Oct 8, 2007
6:27 pm
3629
... when ... rebuilding ... I tried this and it didn't work. Here is my compile options: -mno-thumb-interwork -mno-apcs-reentrant -mno-apcs-stack-check ...
dbrazeau2048
Offline Send Email
Oct 9, 2007
12:39 am
3630
Hello every body please you know how can i enable posix threads when i compile gcc for an arm-elf target (when i use enable-theard without =posix its OK in the...
chahira
chahira_mans...
Offline Send Email
Oct 9, 2007
8:55 am
3631
Hi techies, I need help in resolving linking problem. The Details, I created the library file using ARM GCC tool chain 3.4, Then Using RVDS Evaluation version,...
sakthi
sakthi642
Offline Send Email
Oct 9, 2007
12:21 pm
3632
Hello SAKTHIVEL, you don't give us enough info on the link failure. What does the linker actually say? What does your linker command line look like, where is...
antragsformular
Offline Send Email
Oct 9, 2007
1:03 pm
3633
Hi Jens, we have library file that created using GCC ARM compiler, using these library we need to run in RVDS application. In RVDS Linker, i added library...
sakthi
sakthi642
Offline Send Email
Oct 9, 2007
1:28 pm
3634
hi, haw i can make a new platforme (new arch) and integrated it with uclinux, also i must find the apropriate toolchain or anyone can make the image?? and i...
issam barouni
serieusam
Offline Send Email
Oct 9, 2007
2:12 pm
3635
Hello SAKTHIVEL, I was never successful in linking with libraries from different compilers, so I can't give you specific help on how to achieve this. (I gave...
antragsformular
Offline Send Email
Oct 9, 2007
3:12 pm
3636
I am having problems linking my project. This is what I'm getting: process_begin: CreateProcess((null), DALT_DEBUG -Os -g -nostdlib -nostartfiles - lg -lgcc...
dbrazeau2048
Offline Send Email
Oct 10, 2007
12:59 am
3637
Hi Jens, Thank you for your information. I will try with it. I will get back you, once i get result. Thanking you with regards, SAKTHIVEL NATARAJAN ... From:...
sakthi
sakthi642
Offline Send Email
Oct 10, 2007
3:28 am
3638
Hello when i use the cross compiler arm-elf-gcc to compile a program with threads : #arm-elf-gcc Tarif_src.c -o tarifelf -I /usr/include -lpthread a have this...
chahira
chahira_mans...
Offline Send Email
Oct 10, 2007
11:54 am
3639
... Yes, first of all, translate your French error messages into English so I won't have to do that myself, thank you. Next, add the verbose switch to your gcc...
Tom Walsh
twalsh0001
Offline Send Email
Oct 10, 2007
4:09 pm
Messages 3610 - 3639 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