Skip to content

Commit 657ce04

Browse files
authored
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`.
1 parent e9d25ca commit 657ce04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ win-extras:
653653
ifeq ($(USE_SYSTEM_LLVM), 1)
654654
LLVM_SIZE := llvm-size$(EXE)
655655
else
656-
LLVM_SIZE := $(build_depsbindir)/llvm-size$(EXE)
656+
LLVM_SIZE := PATH=$(build_bindir):$$PATH; $(build_depsbindir)/llvm-size$(EXE)
657657
endif
658658
build-stats:
659659
ifeq ($(USE_BINARYBUILDER_LLVM),1)

0 commit comments

Comments
 (0)