We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6e4dd commit 5414fd5Copy full SHA for 5414fd5
lldb/packages/Python/lldbsuite/test/make/Makefile.rules
@@ -364,7 +364,11 @@ ifneq "$(OS)" "Darwin"
364
365
OBJCOPY ?= $(call replace_cc_with,objcopy)
366
ARCHIVER ?= $(call replace_cc_with,ar)
367
- DWP ?= $(call replace_cc_with,dwp)
+ DWP ?= $(call replace_cc_with,llvm-dwp)
368
+ # For devices that don't have llvm-dwp just use gnu dwp instead.
369
+ ifeq ($(wildcard $(DWP)),)
370
+ DWP = $(call replace_cc_with,dwp)
371
+ endif
372
override AR = $(ARCHIVER)
373
endif
374
0 commit comments