Skip to content

Commit

Permalink
Simplify README by not talking about the source tarball option
Browse files Browse the repository at this point in the history
I believe that few enough people build from source tarballs that
we don't have to talk about it explicitly.
  • Loading branch information
brson committed Feb 18, 2015
1 parent dfc5c0f commit 4acc483
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
19 changes: 4 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,14 @@ Read ["Installing Rust"][install] from [The Book][trpl].
* `curl`
* `git`

2. Download and build Rust:

You can either download a [tarball] or build directly from the [repo].

To build from the [tarball] do:

$ curl -O https://static.rust-lang.org/dist/rustc-nightly-src.tar.gz
$ tar -xzf rustc-nightly-src.tar.gz
$ cd rustc-nightly

Or to build from the [repo] do:
2. Clone the [source] with git:

$ git clone https://github.com/rust-lang/rust.git
$ cd rust

Now that you have Rust's source code, you can configure and build it:
[source]: https://github.com/rust-lang/rust

3. Build and install:

$ ./configure
$ make && make install
Expand Down Expand Up @@ -72,9 +64,6 @@ $ pacman -S base-devel
$ ./configure
$ make && make install

[repo]: https://github.com/rust-lang/rust
[tarball]: https://static.rust-lang.org/dist/rustc-nightly-src.tar.gz

## Notes

Since the Rust compiler is written in Rust, it must be built by a
Expand Down
2 changes: 1 addition & 1 deletion src/llvm
Submodule llvm updated 34 files
+6 −0 include/llvm/CodeGen/MachineModuleInfo.h
+6 −6 lib/Analysis/IPA/InlineCost.cpp
+8 −7 lib/CodeGen/AsmPrinter/EHStreamer.cpp
+13 −4 lib/CodeGen/AsmPrinter/EHStreamer.h
+148 −1 lib/CodeGen/AsmPrinter/Win64Exception.cpp
+4 −0 lib/CodeGen/AsmPrinter/Win64Exception.h
+8 −0 lib/CodeGen/MachineModuleInfo.cpp
+1 −1 lib/CodeGen/Passes.cpp
+13 −9 lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+3 −5 lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
+29 −4 lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+2 −0 lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+63 −1 lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+0 −3 lib/IR/DebugInfo.cpp
+3 −4 lib/IR/Type.cpp
+6 −11 lib/MC/WinCOFFObjectWriter.cpp
+0 −2 lib/Target/X86/X86ISelLowering.cpp
+2 −9 lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
+0 −41 lib/Transforms/Instrumentation/InstrProfiling.cpp
+0 −3 lib/Transforms/Scalar/EarlyCSE.cpp
+4 −16 lib/Transforms/Vectorize/SLPVectorizer.cpp
+0 −23 test/CodeGen/PowerPC/vsel-prom.ll
+0 −35 test/CodeGen/X86/constant-combines.ll
+0 −12 test/CodeGen/X86/pshufb-mask-comments.ll
+175 −0 test/CodeGen/X86/seh-basic.ll
+196 −0 test/CodeGen/X86/seh-safe-div.ll
+0 −33 test/DebugInfo/location-verifier.ll
+0 −25 test/MC/COFF/diff.s
+1 −10 test/Transforms/EarlyCSE/basic.ll
+0 −19 test/Transforms/Inline/inline-indirect.ll
+0 −2 test/Transforms/InstCombine/loadstore-metadata.ll
+0 −50 test/Transforms/SLPVectorizer/X86/bad_types.ll
+0 −9 test/tools/gold/no-map-whole-file.ll
+9 −10 tools/gold/gold-plugin.cpp

0 comments on commit 4acc483

Please sign in to comment.