Skip to content
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

Merged
merged 3 commits into from
Oct 10, 2019

Conversation

vtjnash
Copy link
Sponsor Member

@vtjnash vtjnash commented Oct 9, 2019

No description provided.

Apparently LLVM will still release binaries on releases.llvm.org (and not GitHub),
the 8.0.1 release was just an exception.
@@ -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)
Copy link
Member

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?

Copy link
Sponsor Member Author

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.

Copy link
Member

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)
Copy link
Member

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?

Copy link
Sponsor Member Author

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?

Copy link
Member

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.

@JeffBezanson JeffBezanson merged commit a68237f into master Oct 10, 2019
@JeffBezanson JeffBezanson deleted the jn/llvm-makefile-cleanup branch October 10, 2019 22:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants