-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show build stats #224
Show build stats #224
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.