mirror of https://github.com/ARMmbed/mbed-os.git
uvision - fix INC dir
The path for INC might be with spaces, uvision does not handle it well, thus wrapping around ""pull/1711/head
parent
816233cf5d
commit
5ce3ec9619
|
@ -34,8 +34,8 @@ class ARM(mbedToolchain):
|
||||||
DEFAULT_FLAGS = {
|
DEFAULT_FLAGS = {
|
||||||
'common': ["--apcs=interwork",
|
'common': ["--apcs=interwork",
|
||||||
"--brief_diagnostics"],
|
"--brief_diagnostics"],
|
||||||
'asm': ['-I%s' % ARM_INC],
|
'asm': ['-I"%s"' % ARM_INC],
|
||||||
'c': ["-c", "--gnu", "-Otime", "--restrict", "--multibyte_chars", "--split_sections", "--md", "--no_depend_system_headers", '-I%s' % ARM_INC,
|
'c': ["-c", "--gnu", "-Otime", "--restrict", "--multibyte_chars", "--split_sections", "--md", "--no_depend_system_headers", '-I"%s"' % ARM_INC,
|
||||||
"--c99", "-D__ASSERT_MSG" ],
|
"--c99", "-D__ASSERT_MSG" ],
|
||||||
'cxx': ["--cpp", "--no_rtti", "-D__ASSERT_MSG"],
|
'cxx': ["--cpp", "--no_rtti", "-D__ASSERT_MSG"],
|
||||||
'ld': [],
|
'ld': [],
|
||||||
|
|
Loading…
Reference in New Issue