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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 4750 - 4779 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4750
... -mthumb-interwork -- Tom Walsh - WN3L - Embedded Systems Consultant http://openhardware.net http://cyberiansoftware.com http://openzipit.org "Windows? No...
tom
twalsh0001
Offline Send Email
Jul 3, 2009
5:16 am
4751
When I follow the build directions on http://www.gnuarm.com/ I get the following error. /usr/include/bits/fcntl2.h:51: error: call to `__open_missing_mode'...
bingybear
Offline Send Email
Jul 11, 2009
11:19 pm
4752
... The latest version on gnuarm.org (NOT gruarm.com) is 4.3.2 Here are the files: http://gnuarm.org/files.html Here are the instructions: ...
rtstofer
Offline Send Email
Jul 12, 2009
7:17 pm
4753
Hello, the application I am currently developing (using LPC2138) has been compiled completely in ARM mode until now. To save program space and download times,...
Tilmann Reh
tilmannreh
Offline Send Email
Jul 16, 2009
10:43 am
4754
... I have a makefile that collects objects by compile mode and then has separate compile time command lines that set -mthumb per group of objects. Read...
Ralph Hempel
ralphhempel
Offline Send Email
Jul 16, 2009
12:00 pm
4755 Eric Haver
havereric2
Offline Send Email
Jul 16, 2009
12:00 pm
4756
... That switch enables interworking of differently compiled modules. It is already set. Tilmann...
Tilmann Reh
tilmannreh
Offline Send Email
Jul 16, 2009
12:15 pm
4757
... I have used make before - but I found that IDE to be much more comfortable. However, the cleanest solution to the problem would be a way to switch the...
Tilmann Reh
tilmannreh
Offline Send Email
Jul 16, 2009
12:21 pm
4758
... But since you can't do that, you will have to do something else. I was just working with a FreeRTOS demo project and the makefile had separate lists of...
rtstofer
Offline Send Email
Jul 16, 2009
1:30 pm
4759
... That's why I'm asking here... :-) ... After all, embedded software for a custom specific hardware, especially all peripheral access and even more...
Tilmann Reh
tilmannreh
Offline Send Email
Jul 16, 2009
2:26 pm
4760
... What IDE do you use/recommend? I am using Eclipse but it is so slow that even editing needs attention (on an Athlon X2). I have been using Code::Blocks...
Alain Mouette
alainm3
Offline Send Email
Jul 16, 2009
3:00 pm
4761
... I first tried Eclipse - but it's a) slow and b) its workspace concept is boring. ... Read the whole thread, the answer is in there. :-) Yes, I use...
Tilmann Reh
tilmannreh
Offline Send Email
Jul 16, 2009
3:21 pm
4762
... You must be using an OLD Eclipse. My first exposure to Eclipse was just like you say, S.L.O.W. But with Europa and Ganymede Eclipse is WAY faster and...
Dennis Clark
dennis_lm_clark
Online Now Send Email
Jul 16, 2009
3:22 pm
4763
... I like Geany: http://www.geany.org/ and I find useful the "project" plugin for the tag searches. I use "make" for building, so I can use any compiler I...
Fausto Marzoli
faumarz
Offline Send Email
Jul 16, 2009
3:29 pm
4764
I have a small Smartwin (www.smartwinlib.org) GUI project that I built on XP using MinGW. Went very smoothly, nice and easy. I am now trying to port it to...
aprogrammer@...
aprogrammer...
Offline Send Email
Jul 16, 2009
3:34 pm
4765
... I like Eclipse... I didn't know there was an ARM plug-in. In fact, I don't know what the CDT plug-in is buying me. My projects are all based on makefiles...
rtstofer
Offline Send Email
Jul 16, 2009
4:32 pm
4766
... I don't use Ecliplse (I use Geany), but I agree with you at all. I like "make" very much (really powerful) and once you have a "template" there is little...
Fausto Marzoli
faumarz
Offline Send Email
Jul 16, 2009
5:01 pm
4767
... One thing I don't like about any 'helpful' IDE is that they hide stuff in dialog boxes or XML documents. If I want to change build options, I have to...
rtstofer
Offline Send Email
Jul 16, 2009
6:12 pm
4768
All, I've used makefiles for LOTS of complex things over the years and I agree, you can do anything under the sun with them. What a makefile is NOT is easy to...
Dennis Clark
dennis_lm_clark
Online Now Send Email
Jul 16, 2009
6:24 pm
4769
... It is a different way, and it has to be learned too :) The only important thing is: will it be better after all thein new learning? ... It is right in the...
Alain Mouette
alainm3
Offline Send Email
Jul 16, 2009
6:49 pm
4770
... There is one thing that annoys me not thaen anything in using makefiles: every time add an include to a file, I have to edit the makefile to uptade the...
Alain Mouette
alainm3
Offline Send Email
Jul 16, 2009
6:56 pm
4771
... gcc -M Ralph...
Ralph Hempel
ralphhempel
Offline Send Email
Jul 16, 2009
7:09 pm
4772
... Of course! In fact GCC has a command line option to have it check the dependencies and output the results. A while back I posted a Makefile in the Files...
rtstofer
Offline Send Email
Jul 16, 2009
7:12 pm
4773
... s/I'm too old/I demand flexibility from my tools/ -- Dave McGuire Port Charlotte, FL...
Dave McGuire
purringdave
Offline Send Email
Jul 16, 2009
7:13 pm
4774
Alain, I'm not sure what you mean by adding include files. Where are you adding them? Are you adding includes to individual source files or are you creating a...
Ron Sheely
ronsheely
Offline Send Email
Jul 16, 2009
7:47 pm
4775
... I took what the OP meant to be that he added a new source file and then added the header file to one of the other .c files. Now the .c file depends on the...
rtstofer
Offline Send Email
Jul 16, 2009
8:18 pm
4776
... Yes, that is it. Sometimes a .c file is changed and so is it's associated .h file. The needs to be a dependency list so that make knows what other files...
Alain Mouette
alainm3
Offline Send Email
Jul 16, 2009
9:25 pm
4777
... Very interesting. Exactly what I was dreaming of :) Alain...
Alain Mouette
alainm3
Offline Send Email
Jul 16, 2009
9:34 pm
4778
Hi Richard, ... I found something (from a friend that fount it from...) that may help a lot with your Makefile: OBJS=$(SRCS:.c=.o) This convert the list of .c...
Alain Mouette
alainm3
Offline Send Email
Jul 16, 2009
11:23 pm
4779
... Thanks! I had seen that in the FreeRTOS demo project (I believe) but hadn't gotten around to fixing my own makefiles. It is definitely worth doing. And I...
rtstofer
Offline Send Email
Jul 17, 2009
12:24 am
Messages 4750 - 4779 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