diff options
author | Andreas Fritiofson <andreas.fritiofson@gmail.com> | 2009-11-21 09:30:09 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-21 09:30:09 -0800 |
commit | 425e43d9d1f09a4de86eae89c91924ec98ef2de0 (patch) | |
tree | aac3557a7a81e4be4cc1694750a255740cb2ea3f | |
parent | 69c751956293e822faa6cf844f2864d81c36a578 (diff) | |
download | riscv-openocd-425e43d9d1f09a4de86eae89c91924ec98ef2de0.zip riscv-openocd-425e43d9d1f09a4de86eae89c91924ec98ef2de0.tar.gz riscv-openocd-425e43d9d1f09a4de86eae89c91924ec98ef2de0.tar.bz2 |
show script search dirs in debug log
Add this to ease debugging why the standard scripts aren't
found on the default script search path in some build/install
enviroments. Especially on Windows it's not straight forward
where openocd actually looks for the scripts.
Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
-rw-r--r-- | src/helper/configuration.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helper/configuration.c b/src/helper/configuration.c index 74bcc9b..2ea5da4 100644 --- a/src/helper/configuration.c +++ b/src/helper/configuration.c @@ -41,6 +41,8 @@ void add_script_search_dir (const char *dir) script_search_dirs[num_script_dirs-1] = strdup(dir); script_search_dirs[num_script_dirs] = NULL; + + LOG_DEBUG("adding %s", dir); } void add_config_command (const char *cfg) |