-
Notifications
You must be signed in to change notification settings - Fork 188
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
Update LLVM to 10.x #108
Update LLVM to 10.x #108
Conversation
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.
Thanks!
@@ -164,7 +164,7 @@ build/config.BUILT: | |||
build: build/llvm.BUILT build/wasi-libc.BUILT build/compiler-rt.BUILT build/libcxxabi.BUILT build/libcxx.BUILT build/config.BUILT | |||
|
|||
strip: build/llvm.BUILT | |||
cd $(PREFIX)/bin; strip clang-9 lld llvm-ar |
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.
I would imagine that all the clang binaries are symbolic links to each other? I wonder why this wasn't just "clang" from the very beginning?
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.
Should it actually be something like find $(PREFIX)/bin -type f -executable -exec strip {} \;
to get all of the binaries?
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.
yes, something like that sounds better.
Hmm.. did llvm 10 actually get released? I guess I missed the announcement. |
Wait.. http://lists.llvm.org/pipermail/llvm-dev/2020-March/140233.html .. that message was sent after this PR.. talk about fast upgrades ! |
Ha! I wasn't even aware... I actually wanted more SIMD functionality and @sunfishcode suggested the |
The update to LLVM 10.x was done in WebAssembly#108 but the submodule branch was not updated
The update to LLVM 10.x was done in WebAssembly#108 but the submodule branch was not updated. As discussed in WebAssembly#136, the branch line is now removed to avoid such problems.
* fix the typo
No description provided.