forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88f755f
commit cf3fa4c
Showing
39 changed files
with
2,529 additions
and
193 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
|
||
set -ex | ||
|
||
curl https://prereleases.llvm.org/8.0.0/rc3/clang+llvm-8.0.0-rc3-x86_64-linux-gnu-ubuntu-14.04.tar.xz | \ | ||
tar xJf - | ||
export PATH=`pwd`/clang+llvm-8.0.0-rc3-x86_64-linux-gnu-ubuntu-14.04/bin:$PATH | ||
|
||
# FIXME: uncomment this line and remove the next | ||
#git clone https://github.com/cranestation/reference-sysroot-wasi | ||
git clone /tmp/wut reference-sysroot-wasi | ||
|
||
cd reference-sysroot-wasi | ||
git reset --hard d0d8bc47946948646cb50a37471d9516c90d9786 | ||
make -j$(nproc) INSTALL_DIR=/wasm32-unknown-wasi | ||
make install INSTALL_DIR=/wasm32-unknown-wasi | ||
|
||
cd .. | ||
rm -rf reference-sysroot-wasi | ||
rm -rf clang+llvm* |
Submodule reference-sysroot-wasi
added at
d0d8bc
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
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
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
Oops, something went wrong.