... insight-6.1 . ... error near ... Thanks for your help. I used your scripts as it's explain in the link above. I still have an error with the script...
Is there a stl lib for arm-elf- gnu toolchain ? The vector template has indifined reference! 1>./Ufo372/LibMain/src/main.o: In function `std::vector<int, ...
... Heh, sometimes, we just cannot see the trees for the forest. And, that is what mailing lists are for. ;-) Regards, TomW -- Tom Walsh - WN3L - Embedded...
I'm pretty new to the gnu-arm tools and was wondering if anyone could point out a site or tutorial on the typical steps need to do thinks like compiling with...
I noticed in quite a few gnuarm examples that vectors are placed in the correct place based on the order they are linked in. I would rather be a little more...
... I have seen a lot of "information" about this that suggests the fix is to recompile gdb with a line altered or commented out. I don't know if my solution...
Regarding resets, I am somewhat new to this having just bought an Olimex LPC2129 development board and a parallel jtag adapter. My development environment is...
... The major advantage to using stabs+ is that it is an extenstion of the stabs debug info spec. It lets you work with 'long long int' values with gdb (64...
... I have done this, but don't have any examples readily at hand. I would get rid of the "KEEP" as I don't recognize that keyword. It is probably what is...
... I wonder whether this is another one of those locating-stuff-at-zero problems. I never use location zero. Most ARM parts will have some alternate address ...
... I once did some stuff for LPC2xxx. See jtaginit.s in the files area of the LPC2000 yahoo group. Instead of letting the code just run off crazily, run a...
... probably ... You know, I picked that up from somewhere else ... either msp430 or freescale DSP56F8XXX. I carried it over without thinking about it. gnu ld...
... Keep works fine. It forces the linker to keep some symbols when you do dead-code stripping with gc-sections. The kept symbols them form the roots of the...
... The problem becomes one that the processor may abort before you get a chance to "catch it" with the JTAG. I put a short delay loop in my crt0.S to give...
So how should I go about wrapping ldm / stm for usage in C land? I tried: typedef struct { UNS_32 reg[2]; } arm_2_registers_t; static inline arm_2_registers_t...
... http://www.google.com/search?hl=en&q=gcc%20inline%20assembly&btnG=Google+Search section "5.3 Clobber List" should be what you want. There should be ...
But the problem is getting the result of the ldm into named C variables w/o spending extra instructions to move from specific early-clobbered registers to the...
LPC2129 single stepping with gdb/openocd seems very unreliable to me. It works especially poorly if I have a breakpoint set. I have found that if I delete all...
Hi, there are two hardware breakpoints available, and single-stepping uses both of them, but that shouldn't be a problem, as OpenOCD temporarily disables the ...
... Hmm, JTAG (and Insight) works fine with the BDI2000... I did notice that using one of the USB JTAG units that they were pretty slow at singlestepping...
... Yes there are limits to the number of hardware breakpoints. The stepping requires the use of one of the break point registers. To better understand what...
When running from flash you can only have 2 hardware breakpoints set at any one time. If you need more, run your code from RAM instead. As well, turn off all...
I moved from Fedora to Ubuntu 6.10 (Edgy). The gnu-arm toolchain built fine except that I can't build gdb. I get the following error when I run 'make all' ...
... It says that a library is missing. Typically, default install of any distro is missing some type of development library. There are many libraries...
Further to this problem, I found this: http://ubuntuforums.org/showthread.php?t=153223&highlight=termcap that says: --with-termlib=LIB terminal library is ...
I think I might see where the problem is here. armdeveloper is using Ubuntu apparently - he probably has not enabled the source code repositories, so does not...