Skip to content

Commit c644312

Browse files
ZentrikKristofferC
authored andcommitted
Fix calling LLVM_SIZE on windows (#53902)
Per JuliaCI/julia-buildkite#224 (comment), the path needs to be updated so that `llvm-size` can find `libLLVM.dll`. (cherry picked from commit 657ce04)
1 parent 0db324c commit c644312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ win-extras:
657657
ifeq ($(USE_SYSTEM_LLVM), 1)
658658
LLVM_SIZE := llvm-size$(EXE)
659659
else
660-
LLVM_SIZE := $(build_depsbindir)/llvm-size$(EXE)
660+
LLVM_SIZE := PATH=$(build_bindir):$$PATH; $(build_depsbindir)/llvm-size$(EXE)
661661
endif
662662
build-stats:
663663
ifeq ($(USE_BINARYBUILDER_LLVM),1)

0 commit comments

Comments
 (0)