-
Notifications
You must be signed in to change notification settings - Fork 4
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
[WIP] update to LLVM 6 #22
Open
dtzWill
wants to merge
34
commits into
master
Choose a base branch
from
experimental/llvm-6
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dtzWill
force-pushed
the
experimental/llvm-6
branch
from
February 26, 2018 21:52
1562747
to
c1c0fdd
Compare
@dtzWill Does this mean that all the llvm versions will be all-muxed. |
You mean allmux {clang,lld,llc,..}x{llvm_4,llvm_5,llvm_6,..}? Haha last time I tried that I ran out of memory! And need better deduplication to make that as effective as it could be :). Works well for a single version, though! |
Sweet! |
(triggering Travis) |
dtzWill
force-pushed
the
experimental/llvm-6
branch
from
June 17, 2018 20:20
5000836
to
0ffea04
Compare
dtzWill
force-pushed
the
experimental/llvm-6
branch
2 times, most recently
from
September 25, 2018 13:26
3aad9e0
to
1b3db53
Compare
dtzWill
force-pushed
the
experimental/llvm-6
branch
2 times, most recently
from
January 5, 2019 21:16
55a1171
to
f4092eb
Compare
dtzWill
force-pushed
the
experimental/llvm-6
branch
2 times, most recently
from
February 2, 2019 01:20
b2583e4
to
fba5953
Compare
(this function is from CodeGen/CommandFlags.h but takes the build options as parameters instead of looking to globals)
Not really sure /why/ but user_cache_directory is now returning "successfully" but seems to think HOME is "/", which doesn't seem right AFAICT. nix build users have home of /var/empty and HOME=/homeless-shelter...
$ nix-shell ./format.nix -A update
It's now CommandFlags.def, need to revisit why it was included anyway.
Previously version printer was a raw function pointer, and as such we couldn't capture anything in our lambda, hence the 'static' kludge. LLVM 6 now takes std::function here (and passes the OS as an argument), so take advantage of this for a minor cleanup.
dtzWill
force-pushed
the
experimental/llvm-6
branch
from
February 2, 2020 01:15
fba5953
to
7ba546a
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note that this will replace LLVM 4 entirely as the default ALLVM version.
See related #21 .