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 6d68ece commit f13dff6Copy full SHA for f13dff6
libcxx/utils/libcxx/test/config.py
@@ -308,8 +308,8 @@ def configure_compile_flags_header_includes(self):
308
if triple is not None:
309
cxx_target_headers = os.path.join(path, triple, cxx, version)
310
if os.path.isdir(cxx_target_headers):
311
- self.cxx.compile_flags += ['-isystem ' + cxx_target_headers]
312
- self.cxx.compile_flags += ['-isystem ' + cxx_headers]
+ self.cxx.compile_flags += ['-isystem', cxx_target_headers]
+ self.cxx.compile_flags += ['-isystem', cxx_headers]
313
if self.libcxx_obj_root is not None:
314
cxxabi_headers = os.path.join(self.libcxx_obj_root, 'include',
315
'c++build')
0 commit comments