c++ - GCC_ARM 的路径 (mbed_settings.py)

标签 c++ linux pip mbed armcc

我刚开始使用 mbed API,每次我尝试编译我的项目时都会发生这种情况

附言我在 arch Linux 上

usage: make.py [-h] [-m MCU] [-t TOOLCHAIN] [--color] [--cflags CFLAGS]
               [--asmflags ASMFLAGS] [--ldflags LDFLAGS] [-c]
               [--profile PROFILE] [--app-config APP_CONFIG] [-p PROGRAM]
               [-n PROGRAM] [-j JOBS] [-v] [--silent] [-D MACROS]
               [-S [{matrix,toolchains,targets}]] [-f GENERAL_FILTER_REGEX]
               [--automated] [--host HOST_TEST] [--extra EXTRA]
               [--peripherals PERIPHERALS] [--dep DEPENDENCIES]
               [--source SOURCE_DIR] [--duration DURATION] [--build BUILD_DIR]
               [-N ARTIFACT_NAME] [-d DISK] [-s SERIAL] [-b BAUD] [-L] [--rpc]
               [--usb] [--dsp] [--testlib] [--build-data BUILD_DATA]
               [-l LINKER_SCRIPT]
make.py: error: Could not find executable for GCC_ARM.
Currently set search path: /usr/bin/arm-none-eabi-gcc
[mbed] ERROR: "/usr/bin/python2" returned error code 2.
[mbed] ERROR: Command "/usr/bin/python2 -u /home/mathieu_auclair/Desktop/git/IsolightProject/.temp/tools/make.py -t GCC_ARM -m K64F --source . --build ./BUILD/K64F/GCC_ARM" in "/home/mathieu_auclair/Desktop/git/IsolightProject"
---

我看过这篇文章:mbed CLI: make.py: error: Could not find executable for ARM 但我不知道路径应该是什么...... 这是我的设置文件:

"""
mbed SDK
Copyright (c) 2016 ARM Limited

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

from os.path import join, abspath, dirname

#ROOT = abspath(join(dirname(__file__), "."))

##############################################################################
# Build System Settings
##############################################################################
#BUILD_DIR = abspath(join(ROOT, "build"))

# ARM
#ARM_PATH = "C:/Program Files/ARM"

# GCC ARM
GCC_ARM_PATH = "/usr/bin/arm-none-eabi-gcc"

# GCC CodeRed
#GCC_CR_PATH = "C:/code_red/RedSuite_4.2.0_349/redsuite/Tools/bin"

# IAR
#IAR_PATH = "C:/Program Files (x86)/IAR Systems/Embedded Workbench 7.0/arm"

# Goanna static analyser. Please overload it in private_settings.py
#GOANNA_PATH = "c:/Program Files (x86)/RedLizards/Goanna Central 3.2.3/bin"

#BUILD_OPTIONS = []

# mbed.org username
#MBED_ORG_USER = ""

这个问题对你来说可能很简单,但我才刚刚开始所以请帮助我...

[更新]

我正在尝试一些事情,我试图手动启动编译器,结果发生了:

命令

/usr/bin/python2 -u /home/mathieu_auclair/Desktop/git/IsolightProject/.temp/tools/make.py -t GCC_ARM -m k64f --source . --build ./BUILD/K64F/GCC_ARM

输出

htProject/.temp/tools/make.py -t GCC_ARM -m k64f --source . --build ./BUILD/K64F/GCC_ARM 
Building project IsolightProject (K64F, GCC_ARM)
Scan: .
Scan: env
Scan: mbed
Compile [  3.6%]: BLEInstanceBase.cpp
[Fatal Error] stdint.h@9,16: stdint.h: No such file or directory
[ERROR] In file included from ./BLE_API/ble/BLEProtocol.h:21:0,
                 from ./BLE_API/ble/Gap.h:20,
                 from ./BLE_API/ble/BLE.h:21,
                 from ./BLE_API/source/BLEInstanceBase.cpp:17:
/usr/lib/gcc/arm-none-eabi/7.1.0/include/stdint.h:9:16: fatal error: stdint.h: No such file or directory
 # include_next <stdint.h>
                ^~~~~~~~~~
compilation terminated.

我会尝试找出什么是 stdint.h,这一定是问题所在,我会更新它发生了什么!

最佳答案

我已经通过安装这 2 个存储库解决了我的问题 + 我的 cmake 奇怪地在 pip3 上。它使用 pip3 而不是 pip2 安装 cmake,因为 python3 是 arch linux 上的主要 python。

  • arm-none-eabi-newlib
  • avr-libc

这是让我解决问题的链接:

arm-linux-gnu-gcc fatal error: stdio.h: No such file or directory

关于c++ - GCC_ARM 的路径 (mbed_settings.py),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45207377/

相关文章:

c++ - 命名空间调用的多定义错误

c++ - 带有 GCC 和 clang 的 constexpr char 数组

linux - 通过命令行在linux中设置pgagent的作业计划

python - 在新 Mac 上安装 psd-tools 的挑战

python - 离线安装Django

c++ - 重写方法时,virtual 关键字是什么意思?

c++ - 什么可能导致 DefWindowProc 停止处理消息?

linux - 硬链接(hard link)可以指向已删除的文件吗?

linux - 我如何根据这两行的单词总和组合两条相邻的行(递归)

python - 使用 RPM 包与使用 requirements.txt 管理依赖关系