OK, don't laugh now, but I'd like to build Linux kernels for: Target = Webpal, old ('97 vintage) but cheap (get 'em on eBay) CLPS7500-based Internet appliance...
... to send data to the serial port ... load my program with the angel. ... You will more likely get better response posting on the Atmel site www.at91.com...
... If you are using cygwin, then check your mount type for the mount that your source is on. The command "mount" will tell you whether the path is mounted as ...
Is it possible to get the linker to automatically optimize long/short calls? Using C++ with chopped-up memory maps (like SHARP processors with "tightly coupled...
OK, I have partial answers to my own questions: 1. I downloaded a copy of the GNUARM toolchain from http://www.gnuarm.org and installed it. 2. There is a...
Anyone knows how to use list of files to be linked from file ? I.e. instead of: arm-elf-ld a.o b.o c.o.... Get files a.o, b.o and c.o from a file. I am already...
Ok - great suggestion. I am using make, but this didn't occur to me. However, I'd still like to give the linke a file with files. But this is second best. ...
You can also force ld to load certain files and perhaps you can do an include thing like this with ld too. Still, for my money I'd use make instead. Debugging...
hi, this is regarding, how to calculate exact time taken by an instruction to execute on ARM7TDMI processor.I am using Atmel's AT91M55800A controller having ...
... You could use backticks if your shell supports them: arm-elf-ld `cat includelist` ... -- ... If it doesn't work, you're not hitting it with a big enough...
Hi Sten, ... You can always use a second linker control file and a second -T switch. In this second file you can use the INPUT directive like this: # cat...
Hi All, I have just installed the latest binaries set for Windows, over Cygwin. I installed at c:\cygwin... I have downloaded the sample file in the files...
Hello group: I have an IAR kickstart ARM board with a phillips 2106 and a j-link JTAG dongle. I am now using gcc. I can compile/link/run code using the serial...
I don't believe there is any way to hook these up at present. If you find a way, let me know I have a j-link too :-). If someone has the protocol for the...
... Hello Brian. Please make sure cc1.exe was installed. It should be under the libexec/gcc/arm-elf/{GCC-VERSION} subdirectory of the GNUARM distribution. ...
... Hello people. As Rick states, GCC has been updated to 3.4.3 at the GNUARM sites. We have removed the old versions because 3.4.3 has proven to be very...
Hi, I'm having trouble with breakpoints using an Atmel AT91R40008 (ARM7), gbd/insight, and a raven or wiggler (Amontec Chameleon). If I set a breakpoint at a...
On Mon, 13 Dec 2004 08:17:55 +0000 (GMT), Pratyush Anand ... Hello Anand, the ARM7TDMI data sheet is about all you can expect on information on the timing....
Jens Potschadtke
Jens.Potschadtke@...
Dec 17, 2004 2:21 pm
535
I have been investigating free ARM compilers. I have found 2 promising ones. GnuARM and Codesourcery (http://www.codesourcery.com/gnu_toolchains/arm.html) Does...
Hi, all I use a hardware with ARM CPU which have an external RAM connected to the CPU bus. The CPU have internal RAM also. It is not possible for me make both...
... to ... parts? ... I think you're looking for something I was looking for some while ago, that is some way to make two sections of memory look like one. I ...
... I have not tried Thumb stuff, but you could perhaps try setting the debug option to gdb to trace things better. I don't know what to use for your debugger,...
Hi Nick, The linker script which I'm using is /* ld script to locate sections */ OUTPUT_ARCH(arm) ENTRY(start) /* list of our memory sections */ MEMORY { vect...
Hi Rahgandh, ... And indeed it will be. Your "ram" memory region starts at address 0x8001000, so the binary file will have to be at least that big. Byte 0 of...
Hi Nick, I have tried 3 compiler options with gcc-3.4.2 using the same linker script. 1.) build the image with only -g option and size of binary format is ...