File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ def _emscripten_cache_impl(repository_ctx):
75
75
repository_ctx .report_progress ("Building secondary cache" )
76
76
result = repository_ctx .execute (embuilder_args , quiet = False )
77
77
if result .return_code != 0 :
78
+ print ('stderr = ' + result .stderr )
79
+ print ('stdout = ' + result .stdout )
78
80
fail ("Embuilder exited with a non-zero return code" )
79
81
# Override Emscripten's cache with the secondary cache
80
82
default_config += "CACHE = '{}'\n " .format (cache_path )
Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ if (-not $?) { Exit $LastExitCode }
10
10
11
11
Set-Location test_external
12
12
13
- bazel build // :hello- world- wasm
14
- if (-not $? ) { Exit $LastExitCode }
13
+ # bazel build //:hello-world-wasm
14
+ # if (-not $?) { Exit $LastExitCode }
15
15
16
- bazel build // long_command_line:long_command_line_wasm
17
- if (-not $? ) { Exit $LastExitCode }
16
+ # bazel build //long_command_line:long_command_line_wasm
17
+ # if (-not $?) { Exit $LastExitCode }
18
18
19
- bazel build // :hello- embind- wasm -- compilation_mode dbg # debug
20
- if (-not $? ) { Exit $LastExitCode }
19
+ # bazel build //:hello-embind-wasm --compilation_mode dbg # debug
20
+ # if (-not $?) { Exit $LastExitCode }
21
21
22
- # Test use of the closure compiler
23
- bazel build // :hello- embind- wasm -- compilation_mode opt # release
24
- if (-not $? ) { Exit $LastExitCode }
22
+ # # Test use of the closure compiler
23
+ # bazel build //:hello-embind-wasm --compilation_mode opt # release
24
+ # if (-not $?) { Exit $LastExitCode }
25
25
26
26
Set-Location ..\test_secondary_lto_cache
27
27
You can’t perform that action at this time.
0 commit comments