Have you tried removing it? I have never needed to add libgcc to my commandline, although I usually link it with 'gcc' which should call 'ld' with the right...
Yes I have. When I do, I get the following errors. Thanks for ... C:\c>make -f blinky.mak c:/usr/bin/m6811-elf-ld -Tblinky.ld -Map blinky.map -oblinky.obj ...
This is probably more just a question for Stephane Carrez, but open to anyone with input. Looking in the GEL headers for the 9s12 (HCS12 although not really ...
Can anybody find a doc that lists defines to show whether gcc is compiling with -m68hc12, -m68hcs12, etc? It might be easy if it were just M68HCS12, etc. but...
... The patch was attached to one of the email messages posted to the list. In fact, the very same message you replied to and the patch was included in your...
... Hash: SHA1 Hi! Hi! ... You forget something. dex/dey decrement a 16-bit value while dec decrements a 8-bit value only. It's not the same :-) Try: ...
... Hash: SHA1 ... The prefix is rather historical. In several cases, the M6811 prefix should rather be generic because common to HC11/HC12. If you come up ...
Mark, The only problem is that you cannot directly use the patch, as the yahoo list removes the spaces and the patching will fail. Jefferson Smith hinted that...
OK, so when one such as M6811_BAUD has a common use such as the divider for the serial port, I will keep the name. I could use M6812_... to begin a porting...
... Hash: SHA1 ... Use m6811-elf-gcc for the link. Using the linker directly is more complex and requires passing the *correct* options, search paths and...
... find ... $(ARCHIVES) ... is ... CFLAGS). ... bit ... correct ... 1.txt ... $(OBJS) ... Thanks so much for the information. It is very helpful. The reason...
Don't worry, you can still choose to use either memory.x or a customized linker script, or both. "-Wl,-T$(NAME).ld" is a parameter for gcc to tell it to pass...
Dear All, If SCI1 interupt asserts at a baudrate of at least 57600, and CAN interrupted is asserted at the same time at a rate of 500Kbit, SCI1 interrupt will...
I think you are talking about that errata where an even number of simultaneous interrupts in the system will not be asserted. That's because of a flaw in...
Here is another missing optimization for HC12 and 9S12. It seems like I mentioned this over a year ago, but GCC is not taking advantage of the newer bset/bclr....
I am trying to create a build with source code in subdirectories. In each subdirectory I trying to do an incremental link that creates an object file in the...
A few hints In general, the final link should be done in one pass, which is the only one to pass "crt0.o". Each individual ".o" file should still have...
Thanks, for your rapid response. I can do that, but I have both .c and .s files in most of my subdirectories. In those cases I have a .o for each type of file....
I might still not picture your whole project, but... You didn't mention if you tried '-shared' (I have never tried it). But I think what you need is to compile...
Folks, I got a bit busy on other projects this is a progress report. Also, I am old and sick a lot. I have the Kevin Ross BDM working. You can write to...
Also the GDB is the latest version, but I had to drop back to 3.04 on the gcc. My system will not compile and run with the latest. I don't know why, I don't...
Tom, Thanks for the info. I need to explain myself better. You are showing the process where the compile and the linking steps are separate, which at one time...
... I think it could often be mistakenly secured if you bulk-erase without also writing the correct unsecure bits before resetting. I hope your routine asks...
... Can you post what you have now? It would be interesting to read and perhaps someone can help with the coding. -- Daniel O'Connor software and network...
... That's because you're telling it to make an elf executable each time around :) For a large project I would suggest you build each subtree into a static ...