Example #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')
Example #2
0
 def check_executable():
     return mbedToolchain.generic_check_executable("ARMC6", "armclang", 1)
Example #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")
Example #4
0
File: arm.py Project: 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')
 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")
Example #6
0
File: arm.py Project: sg-/mbed-os
 def check_executable():
     return mbedToolchain.generic_check_executable("ARMC6", "armclang", 1)