Conversation
|
Maybe at https://github.com/JuliaLang/julia/blob/37e0579af04919e1e6264bbfc33ed8f4c537005a/Makefile#L608-L611 the speedtest should be launched only if |
It might be easier to just add |
|
That doesn't change the fact that running a command which doesn't exist isn't going to work. |
|
Sure, but isn't |
|
(feel free to push to this) |
|
Okay, so JuliaCI/rootfs-images#240 will add So we only need to figure out Windows. Does anyone know what I need to install for Windows? If it helps, here's how we build the |
|
MSYS2 already has a built-in time. The main problem is that diff --git a/Makefile b/Makefile
index 84f08f4776..a5f77a7ea8 100644
--- a/Makefile
+++ b/Makefile
@@ -646,7 +646,7 @@ win-extras:
ifeq ($(USE_SYSTEM_LLVM), 1)
LLVM_SIZE := llvm-size$(EXE)
else
-LLVM_SIZE := $(build_depsbindir)/llvm-size$(EXE)
+LLVM_SIZE := PATH=$(build_bindir):$$PATH; $(build_depsbindir)/llvm-size$(EXE)
endif
build-stats:
ifeq ($(USE_BINARYBUILDER_LLVM),1) |
Per JuliaCI/julia-buildkite#224 (comment), the path needs to be updated so that `llvm-size` can find `libLLVM.dll`.
|
This should probably use |
Per JuliaCI/julia-buildkite#224 (comment), the path needs to be updated so that `llvm-size` can find `libLLVM.dll`.
|
I think you need to rebase this. |
|
I think we want |
I can't push to JuliaCI#224 so just testing if my fix works properly.
Co-authored-by: Zentrik <Zentrik@users.noreply.github.com>
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)
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)
I believe this used to be run.
Should help monitor sysimage size etc.