一些 Makefile 包含这个 -
ifneq ($(call try-cc,$(SOURCE_LIBUNWIND),$(FLAGS_UNWIND),libunwind),y)
msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
NO_LIBUNWIND := 1
每当我运行这个 make 时,我都会收到错误消息
warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99
我想调试这个问题 - 我想知道导致这个问题的值SOURCE_LIBUNWIND
-FLAGS_UNWIND
我如何将这些值打印在标准输出上以进行调试?