We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bbcfff commit 2c77c1eCopy full SHA for 2c77c1e
tools/toolchains/__init__.py
@@ -331,7 +331,7 @@ def get_inc_file(self, includes):
331
"""Generate a via file for all includes.
332
ARM, GCC, IAR cross compatible
333
"""
334
- cmd_list = ("-I{}".format(c.replace("\\", "/")) for c in includes if c)
+ cmd_list = ("\"-I{}\"".format(c.replace("\\", "/")) for c in includes if c)
335
if self.CHROOT:
336
cmd_list = (c.replace(self.CHROOT, '') for c in cmd_list)
337
return self.make_option_file(list(cmd_list), naming=".includes_{}.txt")
0 commit comments