예제 #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)