I have been given the task of getting a GCC cross compiler setup for STM32F101C4 which has not been a problem however I was given an STM32F103Ze-sk "IAR Kickstart Kit" to test my setup on. I am having problems writing my linker script has anyone done this? or have any advice on creating the SECTIONS portion of the linker script. Thanks --------------------------------------- Posted through http://www.EmbeddedRelated.com

STM32F103Ze-sk linker script
Started by ●February 19, 2010
Reply by ●February 21, 20102010-02-21
tblake wrote:> I have been given the task of getting a GCC cross compiler setup for > STM32F101C4 which has not been a problem however I was given an > STM32F103Ze-sk "IAR Kickstart Kit" to test my setup on. I am having > problems writing my linker script has anyone done this? or have any advice > on creating the SECTIONS portion of the linker script.The IAR compiler is not GCC. The processor seems to be an ARM, which is well supported under the GNU tools. For the linker script, you need a list of the address space layout of your target system. Do you intend to produce a script for the IAR linker or GNU ld? -- Tauno Voipio tauno voipio (at) iki fi
Reply by ●March 6, 20102010-03-06
Thanks for your response. I created a GNU ld script.>tblake wrote: >> I have been given the task of getting a GCC cross compiler setup for >> STM32F101C4 which has not been a problem however I was given an >> STM32F103Ze-sk "IAR Kickstart Kit" to test my setup on. I am having >> problems writing my linker script has anyone done this? or have anyadvice>> on creating the SECTIONS portion of the linker script. > > >The IAR compiler is not GCC. > >The processor seems to be an ARM, which is well supported under >the GNU tools. > >For the linker script, you need a list of the address space >layout of your target system. > >Do you intend to produce a script for the IAR linker or GNU ld? > >-- > >Tauno Voipio >tauno voipio (at) iki fi >--------------------------------------- Posted through http://www.EmbeddedRelated.com
