summary refs log tree commit diff
path: root/src/etc/installer/pkg/Distribution.xml
AgeCommit message (Collapse)AuthorLines
2017-06-05Revert "Add RLS to .pkg installer"Alex Crichton-11/+0
This reverts commit 7c362732dc49d7ab6d3fcf973922337dae53dd5c.
2017-06-05Revert "Fix formatting issues in Distribution.xml"Alex Crichton-33/+33
This reverts commit f3b29d3f010e9895e711767eb9eeba7f5de9ba50.
2017-05-29Fix formatting issues in Distribution.xmlEdward Yang-33/+33
2017-05-29Add RLS to .pkg installerEdward Yang-0/+11
2017-01-24rustbuild: Start building --enable-extendedAlex Crichton-0/+71
This commit adds a new flag to the configure script, `--enable-extended`, which is intended for specifying a desire to compile the full suite of Rust tools such as Cargo, the RLS, etc. This is also an indication that the build system should create combined installers such as the pkg/exe/msi artifacts. Currently the `--enable-extended` flag just indicates that combined installers should be built, and Cargo is itself not compiled just yet but rather only downloaded from its location. The intention here is to quickly get to feature parity with the current release process and then we can start improving it afterwards. All new files in this PR inside `src/etc/installer` are copied from the rust-packaging repository.