| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Fixes multirust issue #9437
|
|
|
|
|
| |
Fix unicode PATH the same way as mozilla-central does it for windows.
Also append extra PATHs instead of prepending, for some reason that broke ./mach run
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Add SERVO_USE_NIGHTLY_RUST env var to use the latest rust/cargo nightly snapshot
- Fix up looking for cargo binary (in cargo/bin/cargo, not bin/cargo)
- Fix up win32 executable checking (use .exe suffix)
- fix up win32 PATH handling (subprocess must use shell=True for PATH change to be honored)
|
| |
|
|
|
|
|
|
| |
… and remove mentions of "snapshots".
We now use rust-lang.org nightly builds rather than our own snapshots.
|
| |
|
|
|
|
| |
… and libc 0.2 and many other dependencies
|
|
|
|
| |
issue #8349)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Currently, ld.gold is always used for linking if found on the
system. There are some cases however when one may want to opt out
from using it. This patch adds the boolean field `rustc-with-gold`
to the `[tools]` section of `.servobuild`, which if set false,
disables the use of ld.gold.
|
|
|
|
| |
In some of these cases, files were not being closed
|
|
|
|
| |
Fixes #7247.
|
|
|
|
| |
This shaves 50 seconds off the build time on my machine.
|
| |
|
| |
|
|
|
|
|
| |
This speeds up `./mach build --dev` followed by `./mach build-cef` by a
large amount, and also speeds up other build combos found in our CI.
|
|
|
|
|
|
|
| |
Fixes #6236
Also included in this commit are the changes need to make flake8 pass
for the existing python file
|
|\
| |
| |
| |
| |
| | |
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6268)
<!-- Reviewable:end -->
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
| |
The existing code for setting up the environment assumes that
the directory layout containing rust and cargo conforms to the
one used by rust-installer's tarballs. This makes overriding
the system root awkward for simple cases where I want to test
my own build directly from the rust build directory. This
patch just adds a second path to PATH and LD_LIBRARY_PATH
to accomodate both disk layouts.
Conflicts:
python/servo/command_base.py
|
|\
| |
| |
| |
| |
| | |
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6201)
<!-- Reviewable:end -->
|
| | |
|
|/
|
|
| |
This might allow us to merge #5648
|
|
|
|
|
| |
Require either --dev or --release, unless a default build.mode is set
in .servobuild. Fixes #5933.
|
| |
|
|\
| |
| |
| |
| |
| | |
This will be set in servo/saltfs to prevent our buildbot builders from re-downloading the build tools for every build.
r? @larsbergstrom or @metajack or @Manishearth
|
| |
| |
| |
| |
| | |
This will be set in servo/saltfs to prevent our buildbot builders from
re-downloading the build tools for every build.
|
| | |
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
| |
This eliminates the
Synchronizing submodule url for 'support/android-rs-glue'
Synchronizing submodule url for 'tests/wpt/web-platform-tests'
messages that appeared for every `mach build` command.
|
|
|
|
| |
Fixes #5009
|
|
|
|
|
|
| |
We should be using the one in the product target dir instead.
This makes the B2G deps distributable again
|
| |
|
|
|
|
| |
Fixes #4916
|
|
|
|
|
|
|
|
|
| |
This avoids changing any directories outside the repo, which is better for
some automation scenarios.
The servobuild.example file has a "cache-dir" setting that restores the
previous default location of `~/.servo`, which is useful for developers
working with multiple clones on the same machine.
|
| |
|
|
|
|
|
|
| |
The glut makefile will be removed shortly after glutin lands
for android, so we need to build openssl for android elsewhere
in the build process.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
That way, whenever rust-snapshot-hash changes, mach will look for
the Rust snapshot in a different directory and re-boostrap as needed.
However, older rust version will be left behind never cleaned up.
This is good for git-bisect, but not for disk space:
the current snapshot is 618 MB.
In the future, we may want `mach clean` or some other comment
to remove unused Rust snapshots.
CC #3388
|
|
|
|
| |
(My editor screams at me for flake8 lint errors.)
|