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 ac41f11 commit 8232a4aCopy full SHA for 8232a4a
it.baeyens.arduino.core/src/it/baeyens/arduino/toolchain/ArduinoLanguageProvider.java
@@ -222,7 +222,7 @@ protected String getCompilerCommand(String languageId) {
222
public static String adaptCompilerCommand(String environmentReceivedRecipe) {
223
String ret = environmentReceivedRecipe.replaceAll("[^\\\\]\"\"", Const.EMPTY_STRING);
224
225
- String replaceString = "'-D$1=\"$2\"'"; // linux and mac
+ String replaceString = " '-D$1=\"$2\"'"; // linux and mac
226
if (Platform.getOS().equals(Platform.OS_WIN32)) {
227
replaceString = " \"-D$1=\\\\\"$2\\\\\"\""; // windows
228
}
0 commit comments