*** Target 'STM32H747I_DISCO_CM7' uses ARM-Compiler 'Default Compiler Version 5' which is not available. *** Please review the installed ARM Compiler Versions: 'Manage Project Items - Folders/Extensions' to manage ARM Compiler Versions. 'Options for Target - Target' to select an ARM Compiler Version for the target. *** Build aborted.
时间: 2024-01-15 08:26:23 浏览: 375
Keil.STM32F1xx_DFP.2.3.0安装包
5星 · 资源好评率100%
这个错误提示与Keil中的错误提示相似,意味着你的目标硬件是STM32H747I_DISCO_CM7,但是使用的编译器是 ARM-Compiler 'Default Compiler Version 5',而该编译器当前不可用。你可以按照以下步骤尝试解决这个问题:
1. 打开 MDK-ARM 软件,进入 "Manage Run-Time Environment"。
2. 选择 "Arm Compiler 5",点击 "Install" 安装该编译器版本。
3. 安装完成后,返回到主界面,打开你的工程文件。
4. 进入 "Project" 菜单下的 "Options for Target" 选项。
5. 在弹出的对话框中,选择 "C/C++" 选项卡,然后选择 "ARM Compiler"。
6. 在右侧的 "Version" 下拉菜单中选择你安装的 ARM Compiler 5 版本。
7. 点击 "OK" 保存更改并重新编译工程即可。
如果你已经安装了 ARM Compiler 5,但是仍然无法解决问题,你可以尝试卸载并重新安装该编译器版本,或者检查一下编译器的安装路径是否正确。
阅读全文