-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make: add targets to debug dependencies variables
Add a 'dependency_debug' and a 'DEPENDENCY_DEBUG=1' option for 'info-boards-supported' to save some variables used when resolving dependencies. This should help tracking changes introduced when refactoring the dependency parsing.
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Debug targets to evaluate dependency migrations | ||
# | ||
# The goal is to get the value of variables used for dependency resolution | ||
# and the impact of refactoring | ||
|
||
# Files output can be generated through `info-boards-supported` evaluation with | ||
# | ||
# DEPENDENCY_DEBUG=1 make info-boards-supported | ||
# | ||
# And for each board in the normal make context with | ||
# | ||
# BOARD=board_name make dependency_debug | ||
# | ||
# To compare in an aggregated file, you can run in an application directory: | ||
# | ||
# for board in $(make info-boards); do DEPENDENCY_DEBUG_OUTPUT_DIR=bin/info BOARD=${board} make dependency_debug; done; cat bin/info/* > bin/deps_info | ||
# DEPENDENCY_DEBUG=1 DEPENDENCY_DEBUG_OUTPUT_DIR=bin/info-global make info-boards-supported; cat bin/info-global/* > bin/deps_info-boards-supported | ||
# # And compare both files | ||
# diff -u bin/deps_info bin/deps_info-boards-supported | ||
# | ||
# And when comparing two revisions, include the revision in the file names | ||
|
||
.PHONY: dependency_debug | ||
dependency_debug: | ||
$(call file_save_dependencies_variables,dependencies_info) | ||
@: | ||
|
||
DEPENDENCY_DEBUG_OUTPUT_DIR ?= $(CURDIR) | ||
|
||
# Save variables that are used for parsing dependencies | ||
_DEPS_DEBUG_VARS += BOARD CPU CPU_MODEL CPU_FAM | ||
_DEPS_DEBUG_VARS += FEATURES_PROVIDED FEATURES_REQUIRED FEATURES_OPTIONAL FEATURES_USED FEATURES_MISSING FEATURES_CONFLICT FEATURES_CONFLICTING | ||
_DEPS_DEBUG_VARS += USEMODULE DEFAULT_MODULE DISABLE_MODULE | ||
DEPS_DEBUG_VARS ?= $(_DEPS_DEBUG_VARS) | ||
|
||
# Put some dummy first line to be sure the file is create from scratch | ||
file_save_dependencies_variables = $(call file_save_variable,$(DEPENDENCY_DEBUG_OUTPUT_DIR)/$1_$(BOARD),$(DEPS_DEBUG_VARS)) | ||
file_save_variable = $(shell mkdir -p $(dir $1); rm -f $1)$(foreach v,$2,$(file >>$1,$(call _print_var,$v))) | ||
|
||
# Remove spaces in case of empty value | ||
# Remove spaces around value as it happens | ||
_print_var = $(strip $1 = $(strip $($1))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters