From: Angus Gratton Date: Thu, 16 May 2019 13:20:10 +0000 (+0800) Subject: idf.py: Use mingw32-make for version check X-Git-Tag: v4.0-beta1~327^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f91d969c13d690779ea38561fa4b456a83798fa6;p=esp-idf idf.py: Use mingw32-make for version check Closes https://github.com/espressif/esp-idf/issues/3333 --- diff --git a/tools/idf.py b/tools/idf.py index 4b885310e3..9435200af4 100755 --- a/tools/idf.py +++ b/tools/idf.py @@ -66,7 +66,7 @@ GENERATORS = \ [ # ('generator name', 'build command line', 'version command line', 'verbose flag') ("Ninja", ["ninja"], ["ninja", "--version"], "-v"), - (MAKE_GENERATOR, [MAKE_CMD, "-j", str(multiprocessing.cpu_count() + 2)], ["make", "--version"], "VERBOSE=1"), + (MAKE_GENERATOR, [MAKE_CMD, "-j", str(multiprocessing.cpu_count() + 2)], [MAKE_CMD, "--version"], "VERBOSE=1"), ] GENERATOR_CMDS = dict((a[0], a[1]) for a in GENERATORS) GENERATOR_VERBOSE = dict((a[0], a[3]) for a in GENERATORS)