Closed
Description
The incorrect way: assuming llvm-dwp
exists in the parent directory of the path provided for llvm-config
. In general these two paths cannot be assumed to have any relationship to one another.
Lines 1075 to 1079 in 87bacf2
The correct way: run llvm-config --bindir
using the provided llvm-config, and pick llvm-dwp
inside of the directory that it returns. Bootstrap does this correctly elsewhere, such as for FileCheck:
Lines 669 to 671 in 87bacf2