-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
some improvements to the llvm/codegen makefiles #33510
Conversation
Apparently LLVM will still release binaries on releases.llvm.org (and not GitHub), the 8.0.1 release was just an exception.
4309177
to
ac9582a
Compare
@@ -173,7 +173,7 @@ endif | |||
|
|||
ifneq ($(LLVM_VER),svn) | |||
ifeq (,$(findstring rc,$(LLVM_VER))) | |||
ifeq ($(shell [ $(LLVM_VER_MAJ) -ge 8 -a $(LLVM_VER) != 8.0.0 ]; echo $$?),0) | |||
ifeq ($(shell [ x"$(LLVM_VER)" = x"8.0.1" ]; echo $$?),0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this conditional fail for LLVM 9 now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, turns out llvm 8.0.1 was the only release they decided not to upload to releases.llvm.org and use a github url instead. I mistakenly assumed that mean they were switching to that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:/
@@ -1,8 +1,14 @@ | |||
SRCDIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST)))) | |||
JULIAHOME := $(abspath $(SRCDIR)/../..) | |||
include $(JULIAHOME)/Make.inc | |||
test: | |||
|
|||
check: $(SRCDIR) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update the CI configuration that runs these tests to use the check
target instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't seem to be hardcoding the name anywhere. Do you know of a case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair, I guess this is the default target, so things will keep working.
No description provided.