ソースを参照

Permit spaces in dependencies g++ path (#19929)

Victor Oliveira 4年前
コミット
18a5000718
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      buildroot/share/PlatformIO/scripts/common-dependencies.py

+ 1
- 1
buildroot/share/PlatformIO/scripts/common-dependencies.py ファイルの表示

@@ -234,7 +234,7 @@ def load_marlin_features():
234 234
 	build_flags = env.ParseFlagsExtended(build_flags)
235 235
 
236 236
 	cxx = search_compiler()
237
-	cmd = [cxx]
237
+	cmd = ['"' + cxx + '"']
238 238
 
239 239
 	# Build flags from board.json
240 240
 	#if 'BOARD' in env:

読み込み中…
キャンセル
保存