1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Add list_config generation

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu
2021-12-06 13:40:37 +08:00
committed by Gilles Peskine
parent 18a59b7d4c
commit 0abd677ed7
3 changed files with 23 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ open(CONFIG_FILE, "$config_file") or die "Opening config file '$config_file': $!
# This variable will contain the string to replace in the CHECK_CONFIG of the
# format file
my $config_check = "";
my $list_config = "";
while (my $line = <CONFIG_FILE>) {
if ($line =~ /^(\/\/)?\s*#\s*define\s+(MBEDTLS_\w+).*/) {
@@ -72,6 +73,11 @@ while (my $line = <CONFIG_FILE>) {
$config_check .= " }\n";
$config_check .= "#endif /* $name */\n";
$config_check .= "\n";
$list_config .= "#if defined($name)\n";
$list_config .= " OUTPUT_MACRO_NAME_VALUE($name);\n";
$list_config .= "#endif /* $name */\n";
$list_config .= "\n";
}
}
@@ -83,6 +89,7 @@ close(FORMAT_FILE);
# Replace the body of the query_config() function with the code we just wrote
$query_config_format =~ s/CHECK_CONFIG/$config_check/g;
$query_config_format =~ s/LIST_CONFIG/$list_config/g;
# Rewrite the query_config.c file
open(QUERY_CONFIG_FILE, ">$query_config_file") or die "Opening destination file '$query_config_file': $!";