Compilation issues when migrating from V10.5 to v11.1

I tried to upgrade from v10.5 to v11.1 on Cortex-M0. After adding the portasm.c file in keil, the compilation error occurred.

..\Build\PYF003F18_Test.axf: Warning: L6803W: Relocation #REL:1 in portasm.o(.text.SVC_Handler) with respect to port.o. Thumb Branch is unlikely to reach target invPortSVCHandler_C(.text.vPortSVCHandler_C).
..\Build\PYF003F18_Test.axf: Error: L6286E: Relocation #REL:0 in portasm.o(.text.SVC_Handler) with respect to vPortSVCHandler_C. Value(0xbac) out of range(-0x800 - 0x7fe) for (R_ARM_THM_JUMP11)

There is no portasm.c file in the source code file of V10.5, and there is no problem when compiling.
But there is an additional portasm.c in the source code of V11.1, and compiling will report an error after adding it.
The FreeRTOSconfig.h of v11.1 uses the configuration file of v10.5

Hi @zky97
Welcome to the FreeRTOS Community Forums !
Since you are compiling your project using the Keil compiler
You should use FreeRTOS-Kernel/portable/RVDS/ARM_CM0 at V11.1.0 · FreeRTOS/FreeRTOS-Kernel · GitHub

GCC/ARM_CM0 was updated in this PR for adding a MPU port.

Can you share which FreeRTOSConfig.h file you mean?

Because I use the AC6 compiler, I did not use the Prot file in portable/RVDS/ARM_CM0, but used the one in the GCC/RVDS/ARM_CM0 directory.

/*
 * FreeRTOS V202111.00
 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.	All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * http://www.FreeRTOS.org
 * http://aws.amazon.com/freertos
 *
 * 1 tab == 4 spaces!
 */


#ifndef FREERTOS_CONFIG_H
#define FREERTOS_CONFIG_H

/*-----------------------------------------------------------
 * Application specific definitions.
 *
 * These definitions should be adjusted for your particular hardware and
 * application requirements.
 *
 * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
 * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
 *
 * See http://www.freertos.org/a00110.html
 *----------------------------------------------------------*/

/* Ensure stdint is only used by the compiler, and not the assembler. */
#if defined(__ICCARM__)||defined(__CC_ARM)||defined(__GNUC__)
	#include <stdint.h>
	extern uint32_t SystemCoreClock;
#endif

/***************************************************************************************************************/
/*                                        FreeRTOS基础配置配置选项                                              */
/***************************************************************************************************************/
#define configUSE_PREEMPTION						1                       //1使用抢占式内核,0使用协程
#define configUSE_TIME_SLICING						1						//1使能时间片调度(默认式使能的)
#define configUSE_PORT_OPTIMISED_TASK_SELECTION		0                       //1启用特殊方法来选择下一个要运行的任务
                                                                        //一般是硬件计算前导零指令,如果所使用的
                                                                        //MCU没有这些硬件指令的话此宏应该设置为0!
#define configUSE_TICKLESS_IDLE						0                       //1启用低功耗tickless模式
#define configUSE_QUEUE_SETS						1                       //为1时启用队列
#define configCPU_CLOCK_HZ							(SystemCoreClock)       //CPU频率
#define configTICK_RATE_HZ							(1000)                  //时钟节拍频率,这里设置为1000,周期就是1ms
#define configMAX_PRIORITIES						(32)                    //可使用的最大优先级
#define configMINIMAL_STACK_SIZE					((unsigned short)130)   //空闲任务使用的堆栈大小
#define configMAX_TASK_NAME_LEN						(16)                    //任务名字字符串长度

#define configUSE_16_BIT_TICKS						0                       //系统节拍计数器变量数据类型,
																			//1表示为16位无符号整形,0表示为32位无符号整形
#define configIDLE_SHOULD_YIELD						1                       //为1时空闲任务放弃CPU使用权给其他同优先级的用户任务
#define configUSE_TASK_NOTIFICATIONS            	1                       //为1时开启任务通知功能,默认开启
#define configUSE_MUTEXES							1                       //为1时使用互斥信号量
#define configQUEUE_REGISTRY_SIZE					8                       //不为0时表示启用队列记录,具体的值是可以
																			//记录的队列和信号量最大数目。
#define configCHECK_FOR_STACK_OVERFLOW				0                       //大于0时启用堆栈溢出检测功能,如果使用此功能
																			//用户必须提供一个栈溢出钩子函数,如果使用的话
																			//此值可以为1或者2,因为有两种栈溢出检测方法。
#define configUSE_RECURSIVE_MUTEXES					1                       //为1时使用递归互斥信号量
#define configUSE_MALLOC_FAILED_HOOK				0                       //1使用内存申请失败钩子函数
#define configUSE_APPLICATION_TASK_TAG				0                       
#define configUSE_COUNTING_SEMAPHORES				1                       //为1时使用计数信号量
#define configENABLE_MPU							0						//不启用MPU
#define configENABLE_FPU                            0
#define configTASK_NOTIFICATION_ARRAY_ENTRIES       3
#define configMESSAGE_BUFFER_LENGTH_TYPE            size_t
/***************************************************************************************************************/
/*                                FreeRTOS与内存申请有关配置选项                                                */
/***************************************************************************************************************/
#define configSUPPORT_DYNAMIC_ALLOCATION     		1                       //支持动态内存申请
#define configTOTAL_HEAP_SIZE						((size_t)(3*1024))     //系统所有总的堆大小

/***************************************************************************************************************/
/*                                FreeRTOS与钩子函数有关的配置选项                                              */
/***************************************************************************************************************/
#define configUSE_IDLE_HOOK							0                       //1,使用空闲钩子;0,不使用
#define configUSE_TICK_HOOK							0                       //1,使用时间片钩子;0,不使用

/***************************************************************************************************************/
/*                                FreeRTOS与运行时间和任务状态收集有关的配置选项                                 */
/***************************************************************************************************************/
#define configGENERATE_RUN_TIME_STATS				0                       //为1时启用运行时间统计功能
#define configUSE_TRACE_FACILITY					1                       //为1启用可视化跟踪调试
#define configUSE_STATS_FORMATTING_FUNCTIONS		1                       //与宏configUSE_TRACE_FACILITY同时为1时会编译下面3个函数
																			//prvWriteNameToBuffer(),vTaskList(),
																			//vTaskGetRunTimeStats()
                                                                        
/***************************************************************************************************************/
/*                                FreeRTOS与协程有关的配置选项                                                  */
/***************************************************************************************************************/
#define configUSE_CO_ROUTINES 			        	0                       //为1时启用协程,启用协程以后必须添加文件croutine.c
#define configMAX_CO_ROUTINE_PRIORITIES         	( 2 )                   //协程的有效优先级数目

/***************************************************************************************************************/
/*                                FreeRTOS与软件定时器有关的配置选项                                            */
/***************************************************************************************************************/
#define configUSE_TIMERS							1                               //为1时启用软件定时器
#define configTIMER_TASK_PRIORITY		        	(configMAX_PRIORITIES-1)        //软件定时器优先级
#define configTIMER_QUEUE_LENGTH		        	5                               //软件定时器队列长度
#define configTIMER_TASK_STACK_DEPTH	        	(configMINIMAL_STACK_SIZE*2)    //软件定时器任务堆栈大小

/***************************************************************************************************************/
/*                                FreeRTOS可选函数配置选项                                                      */
/***************************************************************************************************************/
#define INCLUDE_xTaskGetSchedulerState				1                       
#define INCLUDE_vTaskPrioritySet					1
#define INCLUDE_uxTaskPriorityGet		        	1
#define INCLUDE_vTaskDelete				        	1
#define INCLUDE_vTaskCleanUpResources	        	1
#define INCLUDE_vTaskSuspend			        	1
#define INCLUDE_vTaskDelayUntil			        	1
#define INCLUDE_vTaskDelay				        	1
#define INCLUDE_eTaskGetState			        	1
#define INCLUDE_xTimerPendFunctionCall	        	1

/***************************************************************************************************************/
/*                                FreeRTOS与中断有关的配置选项                                                  */
/***************************************************************************************************************/
#ifdef __NVIC_PRIO_BITS
	#define configPRIO_BITS       					__NVIC_PRIO_BITS
#else
	#define configPRIO_BITS       					4                  
#endif

#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY			15                      //中断最低优先级
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY	5                       //系统可管理的最高中断优先级
#define configKERNEL_INTERRUPT_PRIORITY 		( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 	( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )
//#define configMAX_SYSCALL_INTERRUPT_PRIORITY 	0x4F

/***************************************************************************************************************/
/*                                FreeRTOS与中断服务函数有关的配置选项                                          */
/***************************************************************************************************************/
#define xPortPendSVHandler 	PendSV_Handler
#define vPortSVCHandler 		SVC_Handler
#define xPortSysTickHandler	SysTick_Handler

#endif /* FREERTOS_CONFIG_H */


This issue was fixed in this PR -GCC: ARM_CM0: Fix L6286E error on Keil MDK by TomasGalbickaNXP · Pull Request #1131 · FreeRTOS/FreeRTOS-Kernel · GitHub.

Would you please try with the latest main branch?