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 4106 - 4135 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4106
My machine has both gnuarm and codesourcery toolchains installed. I am porting a source tree with >100 source files from a proprietary toolchain to gnuarm...
tclarke1
Offline Send Email
Sep 2, 2008
8:15 pm
4107
... I use %.o: %.c @echo "Compiling $< to $@" $(CC) $(CFLAGS) -o $@ $< CFLAGS includes -c I think it is probably broken to use $^ with a wildcard rule. I am...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 2, 2008
9:25 pm
4108
... A few weird things: @echo show nothing. I have to use plain echo. I have some mixed capitalization in the original file names, and it causes some strange...
tclarke1
Offline Send Email
Sep 2, 2008
10:51 pm
4109
... The @ is a comment. I only turn on the echo when debugging the makefile. ... There are some rules regarding case: .C causes different default handling than...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 2, 2008
11:01 pm
4110
Sorry Charles. The @ is not a comment. Rather, it suppresses echo of the invoked command to shell stdout; i.e. it just runs the command silently in the...
Michael K. Elwood
mkelwood
Offline Send Email
Sep 3, 2008
8:06 pm
4111
One of the big problems with using Windows for this kind of stuff is that it doesn't care about upper/lower case in filesnames or extensions. However, cygwin...
rtstofer
Offline Send Email
Sep 3, 2008
8:48 pm
4112
... I converted all filenames to lower case, and that particular problem went away. I had already installed both GNUARM and Codesourcery toolchains before I...
tclarke1
Offline Send Email
Sep 3, 2008
9:58 pm
4113
... One way to do this is to add your own conversion rules. to rename *.C files to *.c %.c : %.C $(mv) $< $@...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 3, 2008
10:14 pm
4114
... Thank you for that correction. ... Adding an explicit rule can fix that too. Either by renaming the *.C file to *.c or by adding command line options to...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 3, 2008
10:17 pm
4115
... I'm pretty sure it doesn't cover CORTEX as it is based on GCC and I think that part is still being developed. I could be wrong... ... Eclipse is a nice...
rtstofer
Offline Send Email
Sep 3, 2008
10:43 pm
4116
... gcc mainline has included their stuff since 4.3.0 according to: http://elua.berlios.de/tut_gcc_cortex.html This shows you how to build a cortex (thumb2)...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 3, 2008
11:29 pm
4117
... Yagarto comes with a few things preconfigured. But you can install your own, we have done it and it is not too difficult specially if you already have...
Alain M.
alainm3
Offline Send Email
Sep 3, 2008
11:49 pm
4118
I want to use the following line to declare an array at a specific memory location in flash.   const unsigned char eeprom[EE_SIZE] _at_ EE_ADDR_L;   But...
Dewald Du Plooy
dewalddp
Offline Send Email
Sep 5, 2008
2:04 pm
4119
... Correct, some compilers / linkers use that notation. The GNU system uses the __attribute__ to assign data to a segment name, then the linker script is...
Tom Walsh
twalsh0001
Offline Send Email
Sep 5, 2008
2:29 pm
4120
... linker ... You will find it easy to create a region at the beginning of flash (except that won't work because of the interrupt vectors) or at the end of...
rtstofer
Offline Send Email
Sep 5, 2008
4:04 pm
4121
... You have to put it in a different section with the section attribute. Check gcc docs for exact syntax. Once you have done that you have to modify your...
Anton Erasmus
aj_erasmus
Offline Send Email
Sep 6, 2008
7:36 pm
4122
... I try to not use any special compiler extensions like _at_ or the gnu attribute stuff because it kills portability. I always use assembly ad/or ldscripts...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 7, 2008
11:42 pm
4123
hello frenz, I 'm new to using eclipse IDE. I would like you to help me. Can u please temme y it shows ...
urjust2oocool
Offline Send Email
Sep 8, 2008
9:53 am
4124
... From: "urjust2oocool" <urjust2oocool@...> To: <gnuarm@yahoogroups.com> Sent: Monday, September 08, 2008 10:53 AM Subject: [gnuarm] newbie using...
Leon
leon_heller
Offline Send Email
Sep 8, 2008
10:02 am
4125
dont understand y u didnt understand my message... anyways.... I 'm new to using eclipse IDE. I would like you to help me. Can u please tell me y it shows the...
urjust2oocool
Offline Send Email
Sep 8, 2008
10:54 am
4126
I use a custom linker script along with a header file. Example (for ... // Type Def for the SPI interface typedef struct { /* Definition */ } _SPI_TYPE; ...
John
stimey_mn
Offline Send Email
Sep 8, 2008
1:42 pm
4127
Some people don't realize that english may be very difficult to some... but try not to use ebeviations, it only makes it worse. If you are having problem with...
Alain M.
alainm3
Offline Send Email
Sep 8, 2008
2:16 pm
4128
I have a large number of C files I have successfully compiled under GNUARM with the -mthumb -mthumb-interwork options. I am trying to link these objs together...
tclarke1
Offline Send Email
Sep 8, 2008
4:55 pm
4129
Hi, for accessing memory or memory-mapped peripherals at a specific address, I prefer the use of the following construct: #define MY_DEVICE (*(volatile...
Karsten
kweiss78
Offline Send Email
Sep 8, 2008
5:45 pm
4130
For the linker command file: gcc -Wl,--verbose dummy.c You will see the linker command file there. dummy.c /// -----> int main(void){ return 0; } /// <---- For...
Iulian-Nicu Șerb...
undergraver
Online Now Send Email
Sep 8, 2008
6:46 pm
4131
OK, by examining the lengthy verbose link output for a modified 'dummy' program, it looks like the necessary libs were discovered automatically, and there was...
tclarke1
Offline Send Email
Sep 8, 2008
10:41 pm
4132
Make sure you get the library inclusion order correct. gcc/ld tries library linking in the order specified. If you have ld ... -la ... -lb ... and library b...
Charles Manning
embeddedjanitor
Offline Send Email
Sep 8, 2008
10:46 pm
4133
I don't think the library order is the problem. The libraries I have tried linking, libc.a, libm.a, libgcc.a are opened by the ld, but it just isn't finding...
tclarke1
Offline Send Email
Sep 9, 2008
1:24 am
4134
... The assumption, on my part, is that you are trying to build an embedded app rather than one on an ARM system running Linux? Correct? If that is the case,...
Tom Walsh
twalsh0001
Offline Send Email
Sep 9, 2008
1:47 am
4135
it is not actually problem with ethernut. I 've problems with luanching the makefile Raj ... From: Alain M. <alainm@...> To: gnuarm@yahoogroups.com Sent:...
Cool Dude
urjust2oocool
Offline Send Email
Sep 9, 2008
4:21 am
Messages 4106 - 4135 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