2022-05-23 09:30:13 -04:00
|
|
|
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2020-03-02 10:07:49 -05:00
|
|
|
import collections
|
2019-10-03 12:26:44 -04:00
|
|
|
import multiprocessing
|
|
|
|
import os
|
|
|
|
import platform
|
2021-12-08 12:29:14 -05:00
|
|
|
from typing import Dict, Union
|
2019-10-03 12:26:44 -04:00
|
|
|
|
2021-12-08 12:29:14 -05:00
|
|
|
GENERATORS: Dict[str, Union[str, Dict, list]] = collections.OrderedDict([
|
2019-11-08 10:46:02 -05:00
|
|
|
# - command: build command line
|
|
|
|
# - version: version command line
|
|
|
|
# - dry_run: command to run in dry run mode
|
|
|
|
# - verbose_flag: verbose flag
|
2021-12-08 12:29:14 -05:00
|
|
|
# - force_progression: one liner status of the progress
|
2021-01-25 21:49:01 -05:00
|
|
|
('Ninja', {
|
|
|
|
'command': ['ninja'],
|
|
|
|
'version': ['ninja', '--version'],
|
|
|
|
'dry_run': ['ninja', '-n'],
|
2021-12-08 12:29:14 -05:00
|
|
|
'verbose_flag': '-v',
|
|
|
|
# as opposed to printing the status updates each in a in new line
|
|
|
|
'force_progression': True,
|
2020-03-02 10:07:49 -05:00
|
|
|
}),
|
|
|
|
])
|
2019-10-03 12:26:44 -04:00
|
|
|
|
2021-11-09 07:10:56 -05:00
|
|
|
if os.name != 'nt':
|
|
|
|
MAKE_CMD = 'gmake' if platform.system() == 'FreeBSD' else 'make'
|
|
|
|
GENERATORS['Unix Makefiles'] = {'command': [MAKE_CMD, '-j', str(multiprocessing.cpu_count() + 2)],
|
|
|
|
'version': [MAKE_CMD, '--version'],
|
|
|
|
'dry_run': [MAKE_CMD, '-n'],
|
2021-12-08 12:29:14 -05:00
|
|
|
'verbose_flag': 'VERBOSE=1',
|
2022-08-01 14:24:02 -04:00
|
|
|
'force_progression': False}
|
2021-11-09 07:10:56 -05:00
|
|
|
|
2021-06-03 11:14:38 -04:00
|
|
|
URL_TO_DOC = 'https://docs.espressif.com/projects/esp-idf'
|
2020-01-15 08:50:19 -05:00
|
|
|
|
2022-05-04 23:39:13 -04:00
|
|
|
SUPPORTED_TARGETS = ['esp32', 'esp32s2', 'esp32c3', 'esp32s3', 'esp32c2']
|
2022-08-10 07:01:42 -04:00
|
|
|
PREVIEW_TARGETS = ['linux', 'esp32h2', 'esp32c6']
|