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 7ced068 commit 96c74d4Copy full SHA for 96c74d4
tools/toolchains/arm.py
@@ -503,8 +503,13 @@ def get_config_option(self, config_header):
503
return ["-include", config_header]
504
505
def get_compile_options(self, defines, includes, for_asm=False):
506
+
507
opts = ['-D%s' % d for d in defines]
- opts.extend(["-I%s" % i for i in includes if i])
508
+ if self.RESPONSE_FILES:
509
+ opts += ['@{}'.format(self.get_inc_file(includes))]
510
+ else:
511
+ opts += ["-I%s" % i for i in includes if i]
512
513
config_header = self.get_config_header()
514
if config_header:
515
opts.extend(self.get_config_option(config_header))
0 commit comments