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 3759d03 commit 0947db6Copy full SHA for 0947db6
tools/export/gnuarmeclipse/__init__.py
@@ -244,7 +244,7 @@ def create_jinja_ctx(self):
244
opts['ld']['system_libraries'] = self.system_libraries
245
opts['ld']['script'] = join(id.capitalize(),
246
"linker-script-%s.ld" % id)
247
- opts['cpp_cmd'] = " ".join(toolchain.preproc)
+ opts['cpp_cmd'] = "".join('"{}"'.format(toolchain.preproc[0])) + " " + " ".join(toolchain.preproc[1:])
248
249
# Unique IDs used in multiple places.
250
# Those used only once are implemented with {{u.id}}.
0 commit comments