Merge branch 'feat/idf_py_set_target' into 'master'
idf_py: support new command set-target See merge request espressif/esp-idf!5785
This commit is contained in:
commit
60d46f9795
2 changed files with 61 additions and 16 deletions
|
@ -306,6 +306,15 @@ function run_tests()
|
||||||
grep "CONFIG_IDF_TARGET=\"${fake_target}\"" sdkconfig || failure "Project not configured correctly using idf.py reconfigure -D"
|
grep "CONFIG_IDF_TARGET=\"${fake_target}\"" sdkconfig || failure "Project not configured correctly using idf.py reconfigure -D"
|
||||||
grep "IDF_TARGET:STRING=${fake_target}" build/CMakeCache.txt || failure "IDF_TARGET not set in CMakeCache.txt using idf.py reconfigure -D"
|
grep "IDF_TARGET:STRING=${fake_target}" build/CMakeCache.txt || failure "IDF_TARGET not set in CMakeCache.txt using idf.py reconfigure -D"
|
||||||
|
|
||||||
|
# TODO Change the real target to other value than esp32 when we have
|
||||||
|
real_target=esp32
|
||||||
|
print_status "Can set target using idf.py set-target"
|
||||||
|
clean_build_dir
|
||||||
|
rm sdkconfig
|
||||||
|
idf.py set-target esp32 || failure "Failed to set target via idf.py set-target"
|
||||||
|
grep "CONFIG_IDF_TARGET=\"${real_target}\"" sdkconfig || failure "Project not configured correctly using idf.py set-target"
|
||||||
|
grep "IDF_TARGET:STRING=${real_target}" build/CMakeCache.txt || failure "IDF_TARGET not set in CMakeCache.txt using idf.py set-target"
|
||||||
|
|
||||||
# Clean up modifications for the fake target
|
# Clean up modifications for the fake target
|
||||||
mv CMakeLists.txt.bak CMakeLists.txt
|
mv CMakeLists.txt.bak CMakeLists.txt
|
||||||
rm -rf components
|
rm -rf components
|
||||||
|
|
68
tools/idf.py
68
tools/idf.py
|
@ -81,6 +81,8 @@ GENERATORS = [
|
||||||
GENERATOR_CMDS = dict((a[0], a[1]) for a in GENERATORS)
|
GENERATOR_CMDS = dict((a[0], a[1]) for a in GENERATORS)
|
||||||
GENERATOR_VERBOSE = dict((a[0], a[3]) for a in GENERATORS)
|
GENERATOR_VERBOSE = dict((a[0], a[3]) for a in GENERATORS)
|
||||||
|
|
||||||
|
SUPPORTED_TARGETS = ["esp32"]
|
||||||
|
|
||||||
|
|
||||||
def _run_tool(tool_name, args, cwd):
|
def _run_tool(tool_name, args, cwd):
|
||||||
def quote_arg(arg):
|
def quote_arg(arg):
|
||||||
|
@ -220,7 +222,6 @@ def _ensure_build_directory(args, always_run_cmake=False):
|
||||||
os.makedirs(build_dir)
|
os.makedirs(build_dir)
|
||||||
cache_path = os.path.join(build_dir, "CMakeCache.txt")
|
cache_path = os.path.join(build_dir, "CMakeCache.txt")
|
||||||
|
|
||||||
args.define_cache_entry = list(args.define_cache_entry)
|
|
||||||
args.define_cache_entry.append("CCACHE_ENABLE=%d" % args.ccache)
|
args.define_cache_entry.append("CCACHE_ENABLE=%d" % args.ccache)
|
||||||
|
|
||||||
if always_run_cmake or _new_cmakecache_entries(cache_path, args.define_cache_entry):
|
if always_run_cmake or _new_cmakecache_entries(cache_path, args.define_cache_entry):
|
||||||
|
@ -406,6 +407,17 @@ def clean(action, ctx, args):
|
||||||
build_target("clean", ctx, args)
|
build_target("clean", ctx, args)
|
||||||
|
|
||||||
|
|
||||||
|
def set_target(action, ctx, args, idf_target):
|
||||||
|
args.define_cache_entry.append("IDF_TARGET=" + idf_target)
|
||||||
|
sdkconfig_path = os.path.join(args.project_dir, 'sdkconfig')
|
||||||
|
sdkconfig_old = sdkconfig_path + ".old"
|
||||||
|
if os.path.exists(sdkconfig_old):
|
||||||
|
os.remove(sdkconfig_old)
|
||||||
|
if os.path.exists(sdkconfig_path):
|
||||||
|
os.rename(sdkconfig_path, sdkconfig_old)
|
||||||
|
print("Set Target to: %s, new sdkconfig created. Existing sdkconfig renamed to sdkconfig.old." % idf_target)
|
||||||
|
|
||||||
|
|
||||||
def reconfigure(action, ctx, args):
|
def reconfigure(action, ctx, args):
|
||||||
_ensure_build_directory(args, True)
|
_ensure_build_directory(args, True)
|
||||||
|
|
||||||
|
@ -828,24 +840,21 @@ def init_cli():
|
||||||
for action_callback in ctx.command.global_action_callbacks:
|
for action_callback in ctx.command.global_action_callbacks:
|
||||||
action_callback(ctx, global_args, tasks)
|
action_callback(ctx, global_args, tasks)
|
||||||
|
|
||||||
# very simple dependency management
|
|
||||||
completed_tasks = set()
|
|
||||||
|
|
||||||
if not tasks:
|
if not tasks:
|
||||||
print(ctx.get_help())
|
print(ctx.get_help())
|
||||||
ctx.exit()
|
ctx.exit()
|
||||||
|
|
||||||
while tasks:
|
# Make sure that define_cache_entry is list
|
||||||
task = tasks[0]
|
global_args.define_cache_entry = list(global_args.define_cache_entry)
|
||||||
tasks_dict = dict([(t.name, t) for t in tasks])
|
|
||||||
|
|
||||||
name_with_aliases = task.name
|
# Go through the task and create depended but missing tasks
|
||||||
if task.aliases:
|
all_tasks = [t.name for t in tasks]
|
||||||
name_with_aliases += " (aliases: %s)" % ", ".join(task.aliases)
|
tasks, tasks_to_handle = [], tasks
|
||||||
|
while tasks_to_handle:
|
||||||
ready_to_run = True
|
task = tasks_to_handle.pop()
|
||||||
|
tasks.append(task)
|
||||||
for dep in task.dependencies:
|
for dep in task.dependencies:
|
||||||
if dep not in completed_tasks:
|
if dep not in all_tasks:
|
||||||
print(
|
print(
|
||||||
'Adding %s\'s dependency "%s" to list of actions'
|
'Adding %s\'s dependency "%s" to list of actions'
|
||||||
% (task.name, dep)
|
% (task.name, dep)
|
||||||
|
@ -858,8 +867,20 @@ def init_cli():
|
||||||
if option and (option.scope.is_global or option.scope.is_shared):
|
if option and (option.scope.is_global or option.scope.is_shared):
|
||||||
dep_task.action_args.pop(key)
|
dep_task.action_args.pop(key)
|
||||||
|
|
||||||
tasks.insert(0, dep_task)
|
tasks_to_handle.append(dep_task)
|
||||||
ready_to_run = False
|
all_tasks.append(dep_task.name)
|
||||||
|
|
||||||
|
# very simple dependency management
|
||||||
|
completed_tasks = set()
|
||||||
|
while tasks:
|
||||||
|
task = tasks[0]
|
||||||
|
tasks_dict = dict([(t.name, t) for t in tasks])
|
||||||
|
|
||||||
|
name_with_aliases = task.name
|
||||||
|
if task.aliases:
|
||||||
|
name_with_aliases += " (aliases: %s)" % ", ".join(task.aliases)
|
||||||
|
|
||||||
|
ready_to_run = True
|
||||||
|
|
||||||
for dep in task.order_dependencies:
|
for dep in task.order_dependencies:
|
||||||
if dep in tasks_dict.keys() and dep not in completed_tasks:
|
if dep in tasks_dict.keys() and dep not in completed_tasks:
|
||||||
|
@ -1080,7 +1101,22 @@ def init_cli():
|
||||||
+ "For example, \"idf.py -DNAME='VALUE' reconfigure\" "
|
+ "For example, \"idf.py -DNAME='VALUE' reconfigure\" "
|
||||||
+ 'can be used to set variable "NAME" in CMake cache to value "VALUE".',
|
+ 'can be used to set variable "NAME" in CMake cache to value "VALUE".',
|
||||||
"options": global_options,
|
"options": global_options,
|
||||||
"order_dependencies": ["menuconfig"],
|
"order_dependencies": ["menuconfig", "set-target", "fullclean"],
|
||||||
|
},
|
||||||
|
"set-target": {
|
||||||
|
"callback": set_target,
|
||||||
|
"short_help": "Set the chip target to build.",
|
||||||
|
"help": "Set the chip target to build. This will remove the "
|
||||||
|
+ "existing sdkconfig file and corresponding CMakeCache and "
|
||||||
|
+ "create new ones according to the new target.\nFor example, "
|
||||||
|
+ "\"idf.py set-target esp32\" will select esp32 as the new chip "
|
||||||
|
+ "target.",
|
||||||
|
"arguments": [{
|
||||||
|
"names": ["idf-target"],
|
||||||
|
"nargs": 1,
|
||||||
|
"type": click.Choice(SUPPORTED_TARGETS),
|
||||||
|
}],
|
||||||
|
"dependencies": ["fullclean", "reconfigure"],
|
||||||
},
|
},
|
||||||
"clean": {
|
"clean": {
|
||||||
"callback": clean,
|
"callback": clean,
|
||||||
|
|
Loading…
Reference in a new issue