This file contains hidden or 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
Finished dev [unoptimized + debuginfo] target(s) in 0.29s | |
Running `target/debug/sccache` | |
TRACE sccache::cmdline: parse | |
DEBUG sccache::config: Attempting to read config file at "/Users/luser/Library/Preferences/Mozilla.sccache/config" | |
DEBUG sccache::config: Couldn't open config file: No such file or directory (os error 2) | |
TRACE sccache::commands: Command::InternalStartServer | |
INFO sccache::server: start_server: port: 4226 | |
INFO sccache::cache::cache: No configured caches successful, falling back to default | |
TRACE sccache::cache::cache: Using DiskCache("/Users/luser/Library/Caches/Mozilla.sccache", 10737418240) | |
INFO sccache::server: server started, listening on port 4226 |
This file contains hidden or 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
TRACE sccache::cmdline: parse | |
DEBUG sccache::config: Attempting to read config file at "/Users/luser/Library/Preferences/Mozilla.sccache/config" | |
DEBUG sccache::config: Couldn't open config file: No such file or directory (os error 2) | |
TRACE sccache::commands: Command::InternalStartServer | |
INFO sccache::server: start_server: port: 4226 | |
INFO sccache::cache::cache: No configured caches successful, falling back to default | |
TRACE sccache::cache::cache: Using DiskCache("/Users/luser/Library/Caches/Mozilla.sccache", 10737418240) | |
INFO sccache::server: server started, listening on port 4226 | |
TRACE sccache::server: incoming connection | |
DEBUG handle_client{id=0}: sccache::server: handle_client: compile |
This file contains hidden or 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
#!/usr/bin/env python | |
# Any copyright is dedicated to the Public Domain. | |
# http://creativecommons.org/publicdomain/zero/1.0/ | |
import lldb | |
import gzip | |
import io | |
import itertools | |
import os | |
import shutil |
This file contains hidden or 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
26.120 Unified_cpp_editor_libeditor1.o | |
26.517 Unified_cpp_dom_ipc1.o | |
26.704 Unified_cpp_gfx_skia24.o | |
26.743 Unified_cpp_dom_canvas0.o | |
26.907 Unified_cpp_image_test_gtest0.o | |
26.935 UnifiedBindings11.o | |
27.325 audioipc_client | |
27.375 Unified_cpp_dom_ipc0.o | |
27.456 Unified_cpp_src_peerconnection0.o | |
27.496 UnifiedBindings4.o |
This file contains hidden or 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
{ | |
"argv": [], | |
"build_opts": { | |
"artifact": true, | |
"ccache": false, | |
"debug": true, | |
"opt": false, | |
"sccache": false | |
}, | |
"client_id": "c890ef1c-c6d8-4bc5-8859-f27e346cda8b", |
This file contains hidden or 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
670 obj-firefox/config/external/icu/i18n | |
562 obj-firefox/config/external/icu/common | |
506 obj-firefox/gfx/skia | |
485 obj-firefox/media/libvpx | |
283 obj-firefox/media/libaom | |
168 obj-firefox/js/src | |
156 obj-firefox/config/makefiles/xpidl | |
155 obj-firefox/media/libjpeg | |
118 obj-firefox/config/external/nspr/pr | |
111 obj-firefox/dom/bindings |
This file contains hidden or 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
#![allow(unused)] | |
#![feature(macro_at_most_once_rep)] | |
macro_rules! opt { | |
(pub $($n:ident $( ($t:ty) )? ,)+) => { | |
enum Foo { | |
$( $n $( ($t) )?, )+ | |
} | |
} | |
} |
This file contains hidden or 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
{ | |
"argv": [], | |
"build_opts": { | |
"artifact": false, | |
"ccache": true, | |
"compiler": "msvc", | |
"debug": true, | |
"opt": false, | |
"sccache": true | |
}, |
This file contains hidden or 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
{ | |
"argv": [], | |
"build_opts": { | |
"artifact": false, | |
"ccache": true, | |
"compiler": "clang", | |
"debug": true, | |
"opt": false, | |
"sccache": true | |
}, |
This file contains hidden or 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
diff --git a/build/mach_bootstrap.py b/build/mach_bootstrap.py | |
--- a/build/mach_bootstrap.py | |
+++ b/build/mach_bootstrap.py | |
@@ -127,16 +127,23 @@ def search_path(mozilla_dir, packages_tx | |
def handle_package(package): | |
if package[0] == 'optional': | |
try: | |
for path in handle_package(package[1:]): | |
yield path | |
except Exception: |