I have a Keil application project created with ARMCC Compiler v5. I now wanted to migrate to GCC compiler. I followed the steps mentioned in https://developer.arm.com/documentation/101407/0542/Creating-Applications/Tips-and-Tricks/GNU-C-Compiler-Support. However, the code still does not compile and fails with below error:
The Folder path provided under Folders/Extensions is <internal directory>/arm-gnu-toolchain-14.2.rel1-mingw-w64-i686-arm-none-eabi\arm-none-eabi/bin/. Please help me out with the build error.
I believe you just need to point to the base directory of your GCC install, in your example:
<internal directory>/arm-gnu-toolchain-14.2.rel1-mingw-w64-i686-arm-none-eabi
Thanks for the response Ronan.
I did change the path to base directory and I still see new build errors. See the attachment.
Build started: Project: wlan_throughput Build target 'wlan_throughput' assembling startup_stm32f411xe.s... ../../../../components/device/stm32/startup_stm32f411xe.s: Assembler messages: ../../../../components/device/stm32/startup_stm32f411xe.s(1): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(2): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(3): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(4): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(5): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(6): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(7): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(8): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(9): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(10): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(11): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(12): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(13): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(14): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(15): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(16): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(16): error: bad instruction `copyright (c)2017 STMicroelectronics.' ../../../../components/device/stm32/startup_stm32f411xe.s(17): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(18): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(19): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(20): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(20): error: bad instruction `you may not use this file except in compliance with the' ../../../../components/device/stm32/startup_stm32f411xe.s(21): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(22): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(23): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(24): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(25): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(27): error: bad instruction `amount of memory(in bytes)allocated for Stack' ../../../../components/device/stm32/startup_stm32f411xe.s(28): error: bad instruction `tailor this value to your application needs' ../../../../components/device/stm32/startup_stm32f411xe.s(29): error: junk at end of line, first unrecognized character is `<' ../../../../components/device/stm32/startup_stm32f411xe.s(30): error: junk at end of line, first unrecognized character is `<' ../../../../components/device/stm32/startup_stm32f411xe.s(31): error: junk at end of line, first unrecognized character is `<' ../../../../components/device/stm32/startup_stm32f411xe.s(33): error: bad instruction `stack_size EQU 0x400' ../../../../components/device/stm32/startup_stm32f411xe.s(35): error: bad instruction `area STACK,NOINIT,READWRITE,ALIGN=3' ../../../../components/device/stm32/startup_stm32f411xe.s(36): error: bad instruction `stack_mem SPACE Stack_Size' ../../../../components/device/stm32/startup_stm32f411xe.s(37): error: bad instruction `__initial_sp' ../../../../components/device/stm32/startup_stm32f411xe.s(40): error: junk at end of line, first unrecognized character is `<' ../../../../components/device/stm32/startup_stm32f411xe.s(41): error: junk at end of line, first unrecognized character is `<' ../../../../components/device/stm32/startup_stm32f411xe.s(42): error: junk at end of line, first unrecognized character is `<' ../../../../components/device/stm32/startup_stm32f411xe.s(44): error: bad instruction `heap_size EQU 0x11000' ../../../../components/device/stm32/startup_stm32f411xe.s(46): error: bad instruction `area HEAP,NOINIT,READWRITE,ALIGN=3' ../../../../components/device/stm32/startup_stm32f411xe.s(47): error: bad instruction `__heap_base' ../../../../components/device/stm32/startup_stm32f411xe.s(48): error: bad instruction `heap_mem SPACE Heap_Size' ../../../../components/device/stm32/startup_stm32f411xe.s(49): error: bad instruction `__heap_limit' ../../../../components/device/stm32/startup_stm32f411xe.s(51): error: bad instruction `preserve8' ../../../../components/device/stm32/startup_stm32f411xe.s(52): error: bad instruction `thumb' ../../../../components/device/stm32/startup_stm32f411xe.s(55): error: bad instruction `vector Table Mapped to Address 0 at Reset' ../../../../components/device/stm32/startup_stm32f411xe.s(56): error: bad instruction `area RESET,DATA,READONLY' ../../../../components/device/stm32/startup_stm32f411xe.s(57): error: bad instruction `export __Vectors' ../../../../components/device/stm32/startup_stm32f411xe.s(58): error: bad instruction `export __Vectors_End' ../../../../components/device/stm32/startup_stm32f411xe.s(59): error: bad instruction `export __Vectors_Size' ../../../../components/device/stm32/startup_stm32f411xe.s(61): error: bad instruction `__vectors DCD __initial_sp' ../../../../components/device/stm32/startup_stm32f411xe.s(61): error: bad instruction `top of Stack' ../../../../components/device/stm32/startup_stm32f411xe.s(62): error: bad instruction `dcd Reset_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(62): error: bad instruction `reset Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(63): error: bad instruction `dcd NMI_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(63): error: bad instruction `nmi Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(64): error: bad instruction `dcd HardFault_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(64): error: bad instruction `hard Fault Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(65): error: bad instruction `dcd MemManage_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(65): error: bad instruction `mpu Fault Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(66): error: bad instruction `dcd BusFault_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(66): error: bad instruction `bus Fault Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(67): error: bad instruction `dcd UsageFault_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(67): error: bad instruction `usage Fault Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(68): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(68): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(69): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(69): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(70): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(70): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(71): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(71): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(72): error: bad instruction `dcd SVC_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(72): error: bad instruction `svcall Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(73): error: bad instruction `dcd DebugMon_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(73): error: bad instruction `debug Monitor Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(74): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(74): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(75): error: bad instruction `dcd PendSV_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(75): error: bad instruction `pendsv Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(76): error: bad instruction `dcd SysTick_Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(76): error: bad instruction `systick Handler' ../../../../components/device/stm32/startup_stm32f411xe.s(78): error: bad instruction `external Interrupts' ../../../../components/device/stm32/startup_stm32f411xe.s(79): error: bad instruction `dcd WWDG_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(79): error: bad instruction `window WatchDog' ../../../../components/device/stm32/startup_stm32f411xe.s(80): error: bad instruction `dcd PVD_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(80): error: bad instruction `pvd through EXTI Line detection' ../../../../components/device/stm32/startup_stm32f411xe.s(81): error: bad instruction `dcd TAMP_STAMP_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(81): error: bad instruction `tamper and TimeStamps through the EXTI line' ../../../../components/device/stm32/startup_stm32f411xe.s(82): error: bad instruction `dcd RTC_WKUP_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(82): error: bad instruction `rtc Wakeup through the EXTI line' ../../../../components/device/stm32/startup_stm32f411xe.s(83): error: bad instruction `dcd FLASH_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(83): error: bad instruction `flash' ../../../../components/device/stm32/startup_stm32f411xe.s(84): error: bad instruction `dcd RCC_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(84): error: bad instruction `rcc' ../../../../components/device/stm32/startup_stm32f411xe.s(85): error: bad instruction `dcd EXTI0_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(85): error: bad instruction `exti Line0' ../../../../components/device/stm32/startup_stm32f411xe.s(86): error: bad instruction `dcd EXTI1_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(86): error: bad instruction `exti Line1' ../../../../components/device/stm32/startup_stm32f411xe.s(87): error: bad instruction `dcd EXTI2_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(87): error: bad instruction `exti Line2' ../../../../components/device/stm32/startup_stm32f411xe.s(88): error: bad instruction `dcd EXTI3_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(88): error: bad instruction `exti Line3' ../../../../components/device/stm32/startup_stm32f411xe.s(89): error: bad instruction `dcd EXTI4_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(89): error: bad instruction `exti Line4' ../../../../components/device/stm32/startup_stm32f411xe.s(90): error: bad instruction `dcd DMA1_Stream0_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(90): error: bad instruction `dma1 Stream 0' ../../../../components/device/stm32/startup_stm32f411xe.s(91): error: bad instruction `dcd DMA1_Stream1_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(91): error: bad instruction `dma1 Stream 1' ../../../../components/device/stm32/startup_stm32f411xe.s(92): error: bad instruction `dcd DMA1_Stream2_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(92): error: bad instruction `dma1 Stream 2' ../../../../components/device/stm32/startup_stm32f411xe.s(93): error: bad instruction `dcd DMA1_Stream3_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(93): error: bad instruction `dma1 Stream 3' ../../../../components/device/stm32/startup_stm32f411xe.s(94): error: bad instruction `dcd DMA1_Stream4_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(94): error: bad instruction `dma1 Stream 4' ../../../../components/device/stm32/startup_stm32f411xe.s(95): error: bad instruction `dcd DMA1_Stream5_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(95): error: bad instruction `dma1 Stream 5' ../../../../components/device/stm32/startup_stm32f411xe.s(96): error: bad instruction `dcd DMA1_Stream6_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(96): error: bad instruction `dma1 Stream 6' ../../../../components/device/stm32/startup_stm32f411xe.s(97): error: bad instruction `dcd ADC_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(97): error: bad instruction `adc1, ADC2 and ADC3s' ../../../../components/device/stm32/startup_stm32f411xe.s(98): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(98): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(99): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(99): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(100): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(100): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(101): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(101): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(102): error: bad instruction `dcd EXTI9_5_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(102): error: bad instruction `external Line[9:5]s' ../../../../components/device/stm32/startup_stm32f411xe.s(103): error: bad instruction `dcd TIM1_BRK_TIM9_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(103): error: bad instruction `tim1 Break and TIM9' ../../../../components/device/stm32/startup_stm32f411xe.s(104): error: bad instruction `dcd TIM1_UP_TIM10_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(104): error: bad instruction `tim1 Update and TIM10' ../../../../components/device/stm32/startup_stm32f411xe.s(105): error: bad instruction `dcd TIM1_TRG_COM_TIM11_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(105): error: bad instruction `tim1 Trigger and Commutation and TIM11' ../../../../components/device/stm32/startup_stm32f411xe.s(106): error: bad instruction `dcd TIM1_CC_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(106): error: bad instruction `tim1 Capture Compare' ../../../../components/device/stm32/startup_stm32f411xe.s(107): error: bad instruction `dcd TIM2_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(107): error: bad instruction `tim2' ../../../../components/device/stm32/startup_stm32f411xe.s(108): error: bad instruction `dcd TIM3_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(108): error: bad instruction `tim3' ../../../../components/device/stm32/startup_stm32f411xe.s(109): error: bad instruction `dcd TIM4_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(109): error: bad instruction `tim4' ../../../../components/device/stm32/startup_stm32f411xe.s(110): error: bad instruction `dcd I2C1_EV_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(110): error: bad instruction `i2c1 Event' ../../../../components/device/stm32/startup_stm32f411xe.s(111): error: bad instruction `dcd I2C1_ER_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(111): error: bad instruction `i2c1 Error' ../../../../components/device/stm32/startup_stm32f411xe.s(112): error: bad instruction `dcd I2C2_EV_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(112): error: bad instruction `i2c2 Event' ../../../../components/device/stm32/startup_stm32f411xe.s(113): error: bad instruction `dcd I2C2_ER_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(113): error: bad instruction `i2c2 Error' ../../../../components/device/stm32/startup_stm32f411xe.s(114): error: bad instruction `dcd SPI1_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(114): error: bad instruction `spi1' ../../../../components/device/stm32/startup_stm32f411xe.s(115): error: bad instruction `dcd SPI2_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(115): error: bad instruction `spi2' ../../../../components/device/stm32/startup_stm32f411xe.s(116): error: bad instruction `dcd USART1_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(116): error: bad instruction `usart1' ../../../../components/device/stm32/startup_stm32f411xe.s(117): error: bad instruction `dcd USART2_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(117): error: bad instruction `usart2' ../../../../components/device/stm32/startup_stm32f411xe.s(118): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(118): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(119): error: bad instruction `dcd EXTI15_10_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(119): error: bad instruction `external Line[15:10]s' ../../../../components/device/stm32/startup_stm32f411xe.s(120): error: bad instruction `dcd RTC_Alarm_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(120): error: bad instruction `rtc Alarm(A and B)through EXTI Line' ../../../../components/device/stm32/startup_stm32f411xe.s(121): error: bad instruction `dcd OTG_FS_WKUP_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(121): error: bad instruction `usb OTG FS Wakeup through EXTI line' ../../../../components/device/stm32/startup_stm32f411xe.s(122): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(122): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(123): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(123): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(124): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(124): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(125): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(125): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(126): error: bad instruction `dcd DMA1_Stream7_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(126): error: bad instruction `dma1 Stream7' ../../../../components/device/stm32/startup_stm32f411xe.s(127): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(127): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(128): error: bad instruction `dcd SDIO_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(128): error: bad instruction `sdio' ../../../../components/device/stm32/startup_stm32f411xe.s(129): error: bad instruction `dcd TIM5_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(129): error: bad instruction `tim5' ../../../../components/device/stm32/startup_stm32f411xe.s(130): error: bad instruction `dcd SPI3_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(130): error: bad instruction `spi3' ../../../../components/device/stm32/startup_stm32f411xe.s(131): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(131): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(132): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(132): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(133): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(133): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(134): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(134): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(135): error: bad instruction `dcd DMA2_Stream0_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(135): error: bad instruction `dma2 Stream 0' ../../../../components/device/stm32/startup_stm32f411xe.s(136): error: bad instruction `dcd DMA2_Stream1_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(136): error: bad instruction `dma2 Stream 1' ../../../../components/device/stm32/startup_stm32f411xe.s(137): error: bad instruction `dcd DMA2_Stream2_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(137): error: bad instruction `dma2 Stream 2' ../../../../components/device/stm32/startup_stm32f411xe.s(138): error: bad instruction `dcd DMA2_Stream3_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(138): error: bad instruction `dma2 Stream 3' ../../../../components/device/stm32/startup_stm32f411xe.s(139): error: bad instruction `dcd DMA2_Stream4_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(139): error: bad instruction `dma2 Stream 4' ../../../../components/device/stm32/startup_stm32f411xe.s(140): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(140): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(141): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(141): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(142): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(142): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(143): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(143): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(144): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(144): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(145): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(145): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(146): error: bad instruction `dcd OTG_FS_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(146): error: bad instruction `usb OTG FS' ../../../../components/device/stm32/startup_stm32f411xe.s(147): error: bad instruction `dcd DMA2_Stream5_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(147): error: bad instruction `dma2 Stream 5' ../../../../components/device/stm32/startup_stm32f411xe.s(148): error: bad instruction `dcd DMA2_Stream6_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(148): error: bad instruction `dma2 Stream 6' ../../../../components/device/stm32/startup_stm32f411xe.s(149): error: bad instruction `dcd DMA2_Stream7_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(149): error: bad instruction `dma2 Stream 7' ../../../../components/device/stm32/startup_stm32f411xe.s(150): error: bad instruction `dcd USART6_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(150): error: bad instruction `usart6' ../../../../components/device/stm32/startup_stm32f411xe.s(151): error: bad instruction `dcd I2C3_EV_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(151): error: bad instruction `i2c3 event' ../../../../components/device/stm32/startup_stm32f411xe.s(152): error: bad instruction `dcd I2C3_ER_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(152): error: bad instruction `i2c3 error' ../../../../components/device/stm32/startup_stm32f411xe.s(153): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(153): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(154): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(154): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(155): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(155): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(156): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(156): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(157): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(157): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(158): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(158): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(159): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(159): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(160): error: bad instruction `dcd FPU_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(160): error: bad instruction `fpu' ../../../../components/device/stm32/startup_stm32f411xe.s(161): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(161): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(162): error: bad instruction `dcd 0' ../../../../components/device/stm32/startup_stm32f411xe.s(162): error: bad instruction `reserved' ../../../../components/device/stm32/startup_stm32f411xe.s(163): error: bad instruction `dcd SPI4_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(163): error: bad instruction `spi4' ../../../../components/device/stm32/startup_stm32f411xe.s(164): error: bad instruction `dcd SPI5_IRQHandler' ../../../../components/device/stm32/startup_stm32f411xe.s(164): error: bad instruction `spi5' ../../../../components/device/stm32/startup_stm32f411xe.s(166): error: bad instruction `__vectors_end' ../../../../components/device/stm32/startup_stm32f411xe.s(168): error: bad instruction `__vectors_size EQU __Vectors_End-__Vectors' ../../../../components/device/stm32/startup_stm32f411xe.s(170): error: bad instruction `area |.text|,CODE,READONLY' ../../../../components/device/stm32/startup_stm32f411xe.s(172): error: bad instruction `reset handler' ../../../../components/device/stm32/startup_stm32f411xe.s(173): error: bad instruction `reset_handler PROC' ../../../../components/device/stm32/startup_stm32f411xe.s(174): error: bad instruction `export Reset_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(175): error: bad instruction `import SystemInit' ../../../../components/device/stm32/startup_stm32f411xe.s(176): error: bad instruction `import __main' ../../../../components/device/stm32/startup_stm32f411xe.s(182): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(184): error: bad instruction `dummy Exception Handlers(infinite loops which can be modified)' ../../../../components/device/stm32/startup_stm32f411xe.s(186): error: bad instruction `nmi_handler PROC' ../../../../components/device/stm32/startup_stm32f411xe.s(187): error: bad instruction `export NMI_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(189): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(190): warning: stray `\' ../../../../components/device/stm32/startup_stm32f411xe.s(190): error: bad instruction `hardfault_handler\' ../../../../components/device/stm32/startup_stm32f411xe.s(191): error: bad instruction `proc' ../../../../components/device/stm32/startup_stm32f411xe.s(192): error: bad instruction `export HardFault_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(194): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(195): warning: stray `\' ../../../../components/device/stm32/startup_stm32f411xe.s(195): error: bad instruction `memmanage_handler\' ../../../../components/device/stm32/startup_stm32f411xe.s(196): error: bad instruction `proc' ../../../../components/device/stm32/startup_stm32f411xe.s(197): error: bad instruction `export MemManage_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(199): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(200): warning: stray `\' ../../../../components/device/stm32/startup_stm32f411xe.s(200): error: bad instruction `busfault_handler\' ../../../../components/device/stm32/startup_stm32f411xe.s(201): error: bad instruction `proc' ../../../../components/device/stm32/startup_stm32f411xe.s(202): error: bad instruction `export BusFault_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(204): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(205): warning: stray `\' ../../../../components/device/stm32/startup_stm32f411xe.s(205): error: bad instruction `usagefault_handler\' ../../../../components/device/stm32/startup_stm32f411xe.s(206): error: bad instruction `proc' ../../../../components/device/stm32/startup_stm32f411xe.s(207): error: bad instruction `export UsageFault_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(209): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(210): error: bad instruction `svc_handler PROC' ../../../../components/device/stm32/startup_stm32f411xe.s(211): error: bad instruction `export SVC_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(213): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(214): warning: stray `\' ../../../../components/device/stm32/startup_stm32f411xe.s(214): error: bad instruction `debugmon_handler\' ../../../../components/device/stm32/startup_stm32f411xe.s(215): error: bad instruction `proc' ../../../../components/device/stm32/startup_stm32f411xe.s(216): error: bad instruction `export DebugMon_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(218): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(219): error: bad instruction `pendsv_handler PROC' ../../../../components/device/stm32/startup_stm32f411xe.s(220): error: bad instruction `export PendSV_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(222): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(223): error: bad instruction `systick_handler PROC' ../../../../components/device/stm32/startup_stm32f411xe.s(224): error: bad instruction `export SysTick_Handler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(226): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(228): error: bad instruction `default_handler PROC' ../../../../components/device/stm32/startup_stm32f411xe.s(230): error: bad instruction `export WWDG_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(231): error: bad instruction `export PVD_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(232): error: bad instruction `export TAMP_STAMP_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(233): error: bad instruction `export RTC_WKUP_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(234): error: bad instruction `export FLASH_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(235): error: bad instruction `export RCC_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(236): error: bad instruction `export EXTI0_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(237): error: bad instruction `export EXTI1_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(238): error: bad instruction `export EXTI2_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(239): error: bad instruction `export EXTI3_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(240): error: bad instruction `export EXTI4_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(241): error: bad instruction `export DMA1_Stream0_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(242): error: bad instruction `export DMA1_Stream1_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(243): error: bad instruction `export DMA1_Stream2_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(244): error: bad instruction `export DMA1_Stream3_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(245): error: bad instruction `export DMA1_Stream4_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(246): error: bad instruction `export DMA1_Stream5_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(247): error: bad instruction `export DMA1_Stream6_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(248): error: bad instruction `export ADC_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(249): error: bad instruction `export EXTI9_5_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(250): error: bad instruction `export TIM1_BRK_TIM9_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(251): error: bad instruction `export TIM1_UP_TIM10_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(252): error: bad instruction `export TIM1_TRG_COM_TIM11_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(253): error: bad instruction `export TIM1_CC_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(254): error: bad instruction `export TIM2_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(255): error: bad instruction `export TIM3_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(256): error: bad instruction `export TIM4_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(257): error: bad instruction `export I2C1_EV_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(258): error: bad instruction `export I2C1_ER_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(259): error: bad instruction `export I2C2_EV_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(260): error: bad instruction `export I2C2_ER_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(261): error: bad instruction `export SPI1_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(262): error: bad instruction `export SPI2_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(263): error: bad instruction `export USART1_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(264): error: bad instruction `export USART2_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(265): error: bad instruction `export EXTI15_10_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(266): error: bad instruction `export RTC_Alarm_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(267): error: bad instruction `export OTG_FS_WKUP_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(268): error: bad instruction `export DMA1_Stream7_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(269): error: bad instruction `export SDIO_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(270): error: bad instruction `export TIM5_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(271): error: bad instruction `export SPI3_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(272): error: bad instruction `export DMA2_Stream0_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(273): error: bad instruction `export DMA2_Stream1_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(274): error: bad instruction `export DMA2_Stream2_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(275): error: bad instruction `export DMA2_Stream3_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(276): error: bad instruction `export DMA2_Stream4_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(277): error: bad instruction `export OTG_FS_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(278): error: bad instruction `export DMA2_Stream5_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(279): error: bad instruction `export DMA2_Stream6_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(280): error: bad instruction `export DMA2_Stream7_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(281): error: bad instruction `export USART6_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(282): error: bad instruction `export I2C3_EV_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(283): error: bad instruction `export I2C3_ER_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(284): error: bad instruction `export FPU_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(285): error: bad instruction `export SPI4_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(286): error: bad instruction `export SPI5_IRQHandler [WEAK]' ../../../../components/device/stm32/startup_stm32f411xe.s(288): error: bad instruction `wwdg_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(289): error: bad instruction `pvd_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(290): error: bad instruction `tamp_stamp_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(291): error: bad instruction `rtc_wkup_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(292): error: bad instruction `flash_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(293): error: bad instruction `rcc_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(294): error: bad instruction `exti0_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(295): error: bad instruction `exti1_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(296): error: bad instruction `exti2_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(297): error: bad instruction `exti3_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(298): error: bad instruction `exti4_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(299): error: bad instruction `dma1_stream0_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(300): error: bad instruction `dma1_stream1_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(301): error: bad instruction `dma1_stream2_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(302): error: bad instruction `dma1_stream3_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(303): error: bad instruction `dma1_stream4_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(304): error: bad instruction `dma1_stream5_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(305): error: bad instruction `dma1_stream6_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(306): error: bad instruction `adc_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(307): error: bad instruction `exti9_5_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(308): error: bad instruction `tim1_brk_tim9_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(309): error: bad instruction `tim1_up_tim10_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(310): error: bad instruction `tim1_trg_com_tim11_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(311): error: bad instruction `tim1_cc_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(312): error: bad instruction `tim2_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(313): error: bad instruction `tim3_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(314): error: bad instruction `tim4_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(315): error: bad instruction `i2c1_ev_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(316): error: bad instruction `i2c1_er_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(317): error: bad instruction `i2c2_ev_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(318): error: bad instruction `i2c2_er_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(319): error: bad instruction `spi1_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(320): error: bad instruction `spi2_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(321): error: bad instruction `usart1_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(322): error: bad instruction `usart2_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(323): error: bad instruction `exti15_10_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(324): error: bad instruction `rtc_alarm_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(325): error: bad instruction `otg_fs_wkup_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(326): error: bad instruction `dma1_stream7_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(327): error: bad instruction `sdio_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(328): error: bad instruction `tim5_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(329): error: bad instruction `spi3_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(330): error: bad instruction `dma2_stream0_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(331): error: bad instruction `dma2_stream1_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(332): error: bad instruction `dma2_stream2_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(333): error: bad instruction `dma2_stream3_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(334): error: bad instruction `dma2_stream4_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(335): error: bad instruction `otg_fs_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(336): error: bad instruction `dma2_stream5_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(337): error: bad instruction `dma2_stream6_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(338): error: bad instruction `dma2_stream7_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(339): error: bad instruction `usart6_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(340): error: bad instruction `i2c3_ev_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(341): error: bad instruction `i2c3_er_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(342): error: bad instruction `fpu_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(343): error: bad instruction `spi4_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(344): error: bad instruction `spi5_irqhandler' ../../../../components/device/stm32/startup_stm32f411xe.s(348): error: bad instruction `endp' ../../../../components/device/stm32/startup_stm32f411xe.s(350): error: bad instruction `align' ../../../../components/device/stm32/startup_stm32f411xe.s(352): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(353): error: bad instruction `user Stack and Heap initialization' ../../../../components/device/stm32/startup_stm32f411xe.s(354): error: junk at end of line, first unrecognized character is `*' ../../../../components/device/stm32/startup_stm32f411xe.s(355): error: bad instruction `__microlib' ../../../../components/device/stm32/startup_stm32f411xe.s(357): error: bad instruction `export __initial_sp' ../../../../components/device/stm32/startup_stm32f411xe.s(358): error: bad instruction `export __heap_base' ../../../../components/device/stm32/startup_stm32f411xe.s(359): error: bad instruction `export __heap_limit' ../../../../components/device/stm32/startup_stm32f411xe.s(361): error: bad instruction `else' ../../../../components/device/stm32/startup_stm32f411xe.s(363): error: bad instruction `import __use_two_region_memory' ../../../../components/device/stm32/startup_stm32f411xe.s(364): error: bad instruction `export __user_initial_stackheap' ../../../../components/device/stm32/startup_stm32f411xe.s(366): error: bad instruction `__user_initial_stackheap' ../../../../components/device/stm32/startup_stm32f411xe.s(369): error: syntax error -- `ldr R1,=(Stack_Mem+Stack_Size)' ../../../../components/device/stm32/startup_stm32f411xe.s(370): error: syntax error -- `ldr R2,=(Heap_Mem+Heap_Size)' ../../../../components/device/stm32/startup_stm32f411xe.s(374): error: bad instruction `align' ../../../../components/device/stm32/startup_stm32f411xe.s(376): error: bad instruction `endif' ../../../../components/device/stm32/startup_stm32f411xe.s(378): error: bad instruction `end' ../../../../components/device/stm32/startup_stm32f411xe.s(380): error: junk at end of line, first unrecognized character is `*' compiling freertos.c... ../../../../components/device/stm32/Core/Src/freertos.c(21): error: fatal error: FreeRTOS.h: No such file or directory compiling stm32f4xx_hal_timebase_tim.c... ../../../../components/device/stm32/Core/Src/stm32f4xx_hal_timebase_tim.c(21): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_rcc_ex.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c(25): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling main.c... ../../../../components/device/stm32/Core/Src/main.c(20): error: fatal error: main.h: No such file or directory compiling stm32f4xx_hal_flash.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c(78): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_flash_ex.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c(64): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_msp.c... ../../../../components/device/stm32/Core/Src/stm32f4xx_hal_msp.c(22): error: fatal error: main.h: No such file or directory compiling stm32f4xx_it.c... ../../../../components/device/stm32/Core/Src/stm32f4xx_it.c(21): error: fatal error: main.h: No such file or directory compiling stm32f4xx_hal_rcc.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c(69): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling app.c... ../../../../examples/featured/wlan_throughput/app.c(31): error: fatal error: sl_board_configuration.h: No such file or directory compiling stm32f4xx_hal_flash_ramfunc.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c(49): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_cortex.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c(83): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_gpio.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c(108): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_exti.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c(87): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_tim.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c(186): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_spi.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c(202): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c(36): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_dma.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c(98): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_dma_ex.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c(40): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_pwr_ex.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c(25): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling stm32f4xx_hal_tim_ex.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c(81): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling croutine.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/croutine.c(28): error: fatal error: FreeRTOS.h: No such file or directory compiling system_stm32f4xx.c... ../../../../components/device/stm32/Core/Src/system_stm32f4xx.c(49): error: fatal error: stm32f4xx.h: No such file or directory compiling queue.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/queue.c(36): error: fatal error: FreeRTOS.h: No such file or directory compiling stm32f4xx_hal_uart.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c(257): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling event_groups.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c(37): error: fatal error: FreeRTOS.h: No such file or directory compiling stream_buffer.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c(38): error: fatal error: FreeRTOS.h: No such file or directory compiling tasks.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/tasks.c(38): error: fatal error: FreeRTOS.h: No such file or directory compiling list.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/list.c(30): error: fatal error: FreeRTOS.h: No such file or directory compiling timers.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/timers.c(36): error: fatal error: FreeRTOS.h: No such file or directory compiling stm32f4xx_hal_pwr.c... ../../../../components/device/stm32/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c(26): error: fatal error: stm32f4xx_hal.h: No such file or directory compiling cmsis_os2.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c(26): error: fatal error: cmsis_compiler.h: No such file or directory compiling port.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F/port.c(33): error: fatal error: FreeRTOS.h: No such file or directory compiling sl_net_si91x.c... ../../../../components/service/network_manager/si91x/sl_net_si91x.c(30): error: fatal error: sl_status.h: No such file or directory compiling heap_4.c... ../../../../components/device/stm32/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c(43): error: fatal error: FreeRTOS.h: No such file or directory compiling sl_net.c... ../../../../components/service/network_manager/src/sl_net.c(30): error: fatal error: sl_net.h: No such file or directory compiling sl_net_basic_profiles.c... ../../../../components/service/network_manager/src/sl_net_basic_profiles.c(30): error: fatal error: sl_net.h: No such file or directory compiling sl_wifi_callback_framework.c... ../../../../components/protocol/wifi/src/sl_wifi_callback_framework.c(30): error: fatal error: sl_wifi_callback_framework.h: No such file or directory compiling sl_net_basic_certificate_store.c... ../../../../components/service/network_manager/src/sl_net_basic_certificate_store.c(18): error: fatal error: sl_net.h: No such file or directory compiling sl_si91x_bsd_socket.c... ../../../../components/service/bsd_socket/si91x_socket/sl_si91x_bsd_socket.c(31): error: fatal error: sl_si91x_socket_utility.h: No such file or directory compiling sl_net_credentials.c... ../../../../components/service/network_manager/src/sl_net_credentials.c(30): error: fatal error: sl_net.h: No such file or directory compiling sl_wifi.c... ../../../../components/protocol/wifi/si91x/sl_wifi.c(30): error: fatal error: sl_wifi.h: No such file or directory compiling sl_wifi_basic_credentials.c... ../../../../components/protocol/wifi/src/sl_wifi_basic_credentials.c(31): error: fatal error: sl_wifi.h: No such file or directory compiling sl_rsi_utility.c... ../../../../components/device/silabs/si91x/wireless/src/sl_rsi_utility.c(30): error: fatal error: sl_si91x_protocol_types.h: No such file or directory compiling sl_si91x_driver.c... ../../../../components/device/silabs/si91x/wireless/src/sl_si91x_driver.c(30): error: fatal error: sl_wifi.h: No such file or directory compiling sl_net_si91x_callback_framework.c... ../../../../components/device/silabs/si91x/wireless/sl_net/src/sl_net_si91x_callback_framework.c(30): error: fatal error: sl_net_types.h: No such file or directory compiling sl_si91x_socket.c... ../../../../components/device/silabs/si91x/wireless/asynchronous_socket/src/sl_si91x_socket.c(30): error: fatal error: sl_si91x_socket_utility.h: No such file or directory compiling stm32_ncp_host.c... ../../../../components/device/silabs/si91x/wireless/host_mcu/stm32/stm32_ncp_host.c(20): error: fatal error: sl_wifi_constants.h: No such file or directory compiling mem_pool_buffer_quota.c... ../../../../components/device/silabs/si91x/wireless/memory/mem_pool_buffer_quota.c(30): error: fatal error: sli_mem_pool.h: No such file or directory compiling sl_net_ping.c... ../../../../components/device/silabs/si91x/wireless/icmp/sl_net_ping.c(17): error: fatal error: sl_status.h: No such file or directory compiling sl_net_rsi_utility.c... ../../../../components/device/silabs/si91x/wireless/sl_net/src/sl_net_rsi_utility.c(30): error: fatal error: sl_si91x_protocol_types.h: No such file or directory compiling sl_net_si91x_integration_handler.c... ../../../../components/device/silabs/si91x/wireless/sl_net/src/sl_net_si91x_integration_handler.c(30): error: fatal error: sl_constants.h: No such file or directory compiling sl_si91x_net_credentials.c... ../../../../components/device/silabs/si91x/wireless/sl_net/src/sl_si91x_net_credentials.c(30): error: fatal error: sl_status.h: No such file or directory compiling sl_si91x_net_internal_stack.c... ../../../../components/device/silabs/si91x/wireless/sl_net/src/sl_si91x_net_internal_stack.c(30): error: fatal error: sl_status.h: No such file or directory compiling sl_si91x_socket_utility.c... ../../../../components/device/silabs/si91x/wireless/socket/src/sl_si91x_socket_utility.c(30): error: fatal error: sl_si91x_socket_utility.h: No such file or directory compiling sl_si91x_spi.c... ../../../../components/device/silabs/si91x/wireless/ncp_interface/spi/sl_si91x_spi.c(30): error: fatal error: sl_si91x_status.h: No such file or directory compiling sl_utility.c... ../../../../components/common/src/sl_utility.c(32): error: fatal error: sl_utility.h: No such file or directory compiling sl_si91x_ncp_driver.c... ../../../../components/device/silabs/si91x/wireless/ncp_interface/sl_si91x_ncp_driver.c(32): error: fatal error: sl_si91x_status.h: No such file or directory compiling sli_si91x_multithreaded.c... ../../../../components/device/silabs/si91x/wireless/threading/sli_si91x_multithreaded.c(30): error: fatal error: sl_si91x_host_interface.h: No such file or directory compiling sl_string.c... ../../../../components/device/stm32/silabs_utility/common/src/sl_string.c(31): error: fatal error: sl_string.h: No such file or directory compiling sli_cmsis_os2_ext_task_register.c... ../../../../components/device/stm32/silabs_utility/common/src/sli_cmsis_os2_ext_task_register.c(31): error: fatal error: sl_assert.h: No such file or directory compiling sl_mem_pool.c... ../../../../components/device/stm32/silabs_utility/common/src/sl_mem_pool.c(31): error: fatal error: em_core.h: No such file or directory compiling m4_core.c... ../../../../components/device/stm32/silabs_utility/common/src/m4_core.c(31): error: fatal error: em_core.h: No such file or directory compiling sl_si91x_errno.c... ../../../../components/device/silabs/si91x/wireless/errno/src/sl_si91x_errno.c(31): error: fatal error: sl_si91x_host_interface.h: No such file or directory ".\wlan_throughput.elf" - 496 Error(s), 5 Warning(s). Target not created. Build Time Elapsed: 00:00:13
Arm Assembler format is different to GNU assembler. You will need to update these.
https://developer.arm.com/documentation/100068/0624/Migrating-from-armasm-to-the-armclang-Integrated-Assembler/Overview-of-differences-between-armasm-and-GNU-syntax-assembly-code