示例#1
0
 def check_executable():
     """Returns True if the executable (armcc) location specified by the
      user exists OR the executable can be found on the PATH.
      Returns False otherwise."""
     return mbedToolchain.generic_check_executable("ARM", 'armcc', 2, 'bin')
示例#2
0
 def check_executable():
     return mbedToolchain.generic_check_executable("ARMC6", "armclang", 1)
示例#3
0
 def check_executable():
     """Returns True if the executable (arm-none-eabi-gcc) location
     specified by the user exists OR the executable can be found on the PATH.
     Returns False otherwise."""
     return mbedToolchain.generic_check_executable("IAR", 'iccarm', 2,
                                                   "bin")
示例#4
0
文件: arm.py 项目: SoCM/ELEC143
 def check_executable():
     """Returns True if the executable (armcc) location specified by the
      user exists OR the executable can be found on the PATH.
      Returns False otherwise."""
     return mbedToolchain.generic_check_executable("ARM", 'armcc', 2, 'bin')
示例#5
0
 def check_executable():
     """Returns True if the executable (arm-none-eabi-gcc) location
     specified by the user exists OR the executable can be found on the PATH.
     Returns False otherwise."""
     return mbedToolchain.generic_check_executable("IAR", 'iccarm', 2, "bin")
示例#6
0
文件: arm.py 项目: sg-/mbed-os
 def check_executable():
     return mbedToolchain.generic_check_executable("ARMC6", "armclang", 1)