Skip to content

Commit

Permalink
Yet more debug printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
fthevenet committed Oct 23, 2023
1 parent 05ac823 commit bfb1983
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions make/RunTests.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,25 @@ endef

# Setup _NT_SYMBOL_PATH on Windows, which points to our pdb files.
ifeq ($(call isTargetOs, windows), true)
$(info "TargetOS is Windows")
ifndef _NT_SYMBOL_PATH
$(info "_NT_SYMBOL_PATH is not yet defined")
SYMBOL_PATH := $(call PathList, $(sort $(patsubst %/, %, $(dir $(wildcard \
$(addprefix $(SYMBOLS_IMAGE_DIR)/bin/, *.pdb */*.pdb))))))
export _NT_SYMBOL_PATH := $(subst \\,\, $(call FixPath, \
$(subst $(DQUOTE),, $(SYMBOL_PATH))))
$(info SYMBOL_PATH (assigned) = $(SYMBOL_PATH))
$(info _NT_SYMBOL_PATH (assigned) = $(_NT_SYMBOL_PATH))
$(call LogDebug, Setting _NT_SYMBOL_PATH to $(_NT_SYMBOL_PATH))
else
$(info "_NT_SYMBOL_PATH is already defined:")
$(info SYMBOL_PATH = $(SYMBOL_PATH))
$(info _NT_SYMBOL_PATH = $(_NT_SYMBOL_PATH))
endif
else
$(info "TargetOS is *NOT* Windows")
endif

$(info SYMBOL_PATH = $(SYMBOL_PATH))
$(info _NT_SYMBOL_PATH = $(_NT_SYMBOL_PATH))

################################################################################
# Hook to include the corresponding custom file, if present.
$(eval $(call IncludeCustomExtension, RunTests.gmk))
Expand Down

0 comments on commit bfb1983

Please sign in to comment.