forked from platformio/platformio-core
Escape compiler path for Win
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
% if STD_RE.search(cxx_flags):
|
||||
"cppStandard": "c++{{ STD_RE.search(cxx_flags).group(1) }}",
|
||||
% end
|
||||
"compilerPath": "{{ cc_path }}"
|
||||
"compilerPath": "{{ cc_path.replace('\\\\', '/').replace('\\', '/').replace('"', '\\"') }}"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user