mirror of https://github.com/ARMmbed/mbed-os.git
Handle [NOT_SUPPORTED] exception in make.py
That let us to ignore build failures for examples on not supported platforms.pull/3139/head
parent
d7c02a13b1
commit
aa3a127c76
|
@ -29,6 +29,7 @@ ROOT = abspath(join(dirname(__file__), ".."))
|
|||
sys.path.insert(0, ROOT)
|
||||
|
||||
from tools.utils import args_error
|
||||
from tools.utils import NotSupportedException
|
||||
from tools.paths import BUILD_DIR
|
||||
from tools.paths import MBED_LIBRARIES
|
||||
from tools.paths import RTOS_LIBRARIES
|
||||
|
@ -326,6 +327,8 @@ if __name__ == '__main__':
|
|||
|
||||
except KeyboardInterrupt, e:
|
||||
print "\n[CTRL+c] exit"
|
||||
except NotSupportedException, e:
|
||||
print "\nNot supported for selected target"
|
||||
except Exception,e:
|
||||
if options.verbose:
|
||||
import traceback
|
||||
|
|
Loading…
Reference in New Issue