Closed Bug 1572238 Opened 5 years ago Closed 5 years ago

Add a version of |nsTraceRefcnt::WalkTheStack| that outputs via a callback

Categories

(Core :: XPCOM, enhancement)

enhancement
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla71
Tracking Status
firefox71 --- fixed

People

(Reporter: erahm, Assigned: KrisWright)

References

(Blocks 1 open bug)

Details

Attachments

(1 file)

For dumping assertion stacks on Android we need to use __android_log_print rather than stderr for output, this means we need a version of nsTraceRefcnt::WalkTheStack that uses a callback function to actually write the stack frames out rather than directly to a file stream.

I'm imagining something like:

void nsTraceRefcnt::WalkTheStack(std::function<void(char*)> aWriter);

nsTraceRefcnt::WalkTheStack([] (char* aOut) {
     __android_log_print(ANDROID_LOG_FATAL, "MOZ_Assert", "%s", aOut);
});

So the actual process of writing stack traces with __android_log_print is achievable, but all of my stack frames on an assert are missing symbols and output like this:

09-17 19:09:44.759  2560  2596 F MOZ_Assert: #01: ??? (???:???)
09-17 19:09:44.759  2560  2596 F MOZ_Assert: #02: ??? (???:???)
09-17 19:09:44.759  2560  2596 F MOZ_Assert: #03: ??? (???:???)
09-17 19:09:44.759  2560  2596 F MOZ_Assert: #04: ??? (???:???)
09-17 19:09:44.759  2560  2596 F MOZ_Assert: #05: ???[/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libmozglue.so +0x18e853]
09-17 19:09:44.759  2560  2596 F MOZ_Assert: #06: ???[/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libmozglue.so +0x18c4c9]

...and so on. It appears that in MozDescribeCodeAddress at a given frame either dladdr fails entirely or it continues with no symbols and jumps ship there. I'm not even certain if Android keeps symbols in the binary, but it is clear to me that dladdr isn't working on some frames at all anyway.

NI'ing :glandium in case you know where this is going wrong. How do we normally interpret stack traces on Android?

Flags: needinfo?(mh+mozilla)

There's nothing you can or should do about symbols. The binaries don't have enough debug info to figure that out in most cases, and even when they do, dladdr doesn't know how to use that. We rely on post-processing, with scripts like tools/rb/fix_linux_stack.py.

Now, as for stack frames #1 to #4, it's likely MozDescribeCodeAddress is not using the right dladdr. It needs to use __wrap_dladdr after including ElfLoader.h after adding mozglue/linker to the LOCAL_INCLUDES. All behind checks for MOZ_LINKER, because dladdr still should be used everywhere else.

Flags: needinfo?(mh+mozilla)

Thank you for the help! I'm not sure how useful dumping assertion stacks can be beyond this point on Android, since all I'm getting from nsTraceRefcnt::WalkTheStack are stacks like this:

09-20 21:55:51.628  4203  4223 F Moz_assert: #01: [/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libxul.so +0x6d68518]
09-20 21:55:51.628  4203  4223 F Moz_assert: #02: N[/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libxul.so +0x6d2ae40]
09-20 21:55:51.628  4203  4223 F Moz_assert: #03: N[/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libxul.so +0x6d2af4a]
09-20 21:55:51.628  4203  4223 F Moz_assert: #04: N[/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libxul.so +0x6d30852]
09-20 21:55:51.628  4203  4223 F Moz_assert: #05: N[/data/app/org.mozilla.fennec_kriswright-2/lib/x86/libxul.so +0x6d30ea0]

And unless I'm missing something it doesn't seem like Android keeps around more useful data.

This is actually OK; that's what the scripts in tools/rb/ are for. Except things are a little wonky on Android, as usual, because I think all of the scripts in tools/rb/ expect the filename in the WalkTheStack output to correspond to a file on disk. Which isn't exactly what you have: you have a file on the device's disk--you have that file on your own disk, but it's in a different location.

So something needs to be made smarter -- possibly by writing an entirely new script that understands Android and has some heuristics for mapping on-device filenames back to filenames on your hard drive. It's possible that these smarts might be easier to add to fix_linux_stack.py.

nalexander, do we have anything in tree that does that mapping from on-device filenames to on-host-device filenames? Surely the debugger must understand something like this, right?

Flags: needinfo?(nalexander)

nalexander, do we have anything in tree that does that mapping from on-device filenames to on-host-device filenames? Surely the debugger must understand something like this, right?

I believe there is an NDK stack dumper script for Android that handles this type of thing, but I don't know if it works for Gecko. I am not sure what the state of the art is here; I'll defer to James and/or Agi.

"The debugger" could mean at least two things:

  1. certainly lldb and gdb know how to attach symbol files in such a way that they can symbolicate stacks. This sounds like a very heavyweight approach to this problem, but it might be possible to use the functionality. Emilio talks about this here, but I see now that he doesn't have an automatic way to deduce the offset/address for libxul.so. I believe that kats once told me how, though, and I see it now. I'll include his notes below.

  2. the Gecko profiler definitely knows how to do this for local builds; I believe it "just knows" to look in, say, toolkit/library/build or whatever for debug symbols. I have never been clear on what techniques it uses to symbolicate.

The notes that kats gave me, which do say how to deduce the correct offset -- given that you can look at the process map, etc:

background:
- insert a MOZ_CRASH or MOZ_RELEASE_ASSERT(false) in gecko/libxul
somewhere that you can trigger
- trigger the crash
- lldb catches the signal but just gives the crash address with no
stack or symbols
debugging:
- in the AS lldb panel, run:
    target modules list
- observe there is no libxul.so in the list, means lldb doesn't know
about libxul.so
- you can force it to add it by running this (replace path as needed):
    target modules add
/home/zspace/mozilla-fennec/obj-android-debug/toolkit/library/libxul.so
- now running `target modules list` will show libxul.so, but lldb
assumes it was loaded at 0x0 which is not actually the case. so when
it tries to resolve addresses it won't work right
- so we need to find out what address libxul.so was actually loaded at.
- (if you have a rooted device, the following steps are faster to do
via an adb root shell).
- in the lldb window, run the following commands:
    platform shell ps | grep " org.mozilla.fennec_kats"
- the above will list the pid of the fennec process in the second
column. plug that into the next command:
    platform shell cat /proc/<pid>/maps | grep libxul
- the above will list the memory ranges libxul.so was loaded into.
Look for the segment with the r-xp permissions which is the executable
segment. more importantly this is the segment which came from offset 0
in the file (hence the 0 in the column following the permissions). the
first column in this row tells us the memory address it was loaded
into, which is what we need to tell lldb about:
    target modules load --file libxul.so --slide 0x<addr>
- and now running e.g. `target modules dump sections libxul.so` should
have the right load addresses displayed
- running e.g. `target modules lookup -a 0x<addr>` with the address of
the crash should symbolicate it to a file/function as best it can
- running commands like `bt` to get the backtrace should work better now.
- if you want this work earlier, stick a breakpoint in
Mappable.cpp:109 (the start of MappableFile::Create). this will get
hit on startup as mozglue unpacks the libraries and loads them into
memory. resume execution on this breakpoint until the "path" ends in
libxul.so, and then resume it once to allow mozglue to finish
processing libxul.so. At this point you can run the above steps to
find out the address libxul was loaded into and tell lldb about it.
Flags: needinfo?(snorp)
Flags: needinfo?(nalexander)
Flags: needinfo?(agi)

Emilio: just FYI, the notes kats gave me answered a question you might have had about the libxul.so offset: see https://bugzilla.mozilla.org/show_bug.cgi?id=1572238#c5.

Flags: needinfo?(emilio)

The Android NDK has ndk-stack which will symbolize a raw stack, but the format has to be the same that the android crash reporter uses. On a release build, disabling the crash reporter I can run this:

~/.mozbuild/android-ndk-r17b/ndk-stack -sym ./<objdir>/toolkit/library/build < logcat.log

and it will symbolize any raw stacktrace, where logcat.log is just a dump of the device logcat from adb logcat.

So I guess if our output matches the output from the android crash reporter it could work?

Flags: needinfo?(agi)

Nice notes :). Out of curiosity, which question?

For the offset I just run maintenance info sections ALLOBJ from gdb, and grabbing the .text section of libxul, which is kind of the same, though a bit more annoying because grepping on gdb output is much less easy... But I think it should be ~equivalent to /proc/<pid>/maps

Flags: needinfo?(emilio)

I would just put up for review whatever you have at this point, and we can deal with getting the correct output on logcat (or correctly post-processed) later.

Defines an android-only version of nsTraceRefcnt::WalkTheStack that takes a function callback, which outputs the stack frame buffer to __android_log_print. Also uses __wrap_dladdr in MozDescribeCodeAddress, which outputs slightly more informative data for the stack trace (instead of instances of '???/??? [???]').

Pushed by kwright@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/88334e3a605e
Dump assertion stacks using __android_log_print. r=Ehsan

Backed out changeset 88334e3a605e (Bug 1572238) for causing windows 2012 bustages

Push with failures: https://treeherder.mozilla.org/#/jobs?repo=autoland&searchStr=windows%2C2012%2Cbuild&fromchange=a96435a6dc5417a0d2a8c356ac5ddd7e9852804c&tochange=55f5d719d0359a35443d0d2586af7383645a94b6&selectedJob=268211219

Backout link: https://hg.mozilla.org/integration/autoland/rev/55f5d719d0359a35443d0d2586af7383645a94b6

Failure log: https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=268211219&repo=autoland&lineNumber=16934

[task 2019-09-24T18:41:03.586Z] 18:41:03 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fonr_socket_tcp.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/nr_socket_tcp.i_o.pp -Xclang -MT -Xclang nr_socket_tcp.i_o z:/task_1569342649/build/src/media/mtransport/nr_socket_tcp.cpp
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nr_socket_tcp.cpp:42:
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nr_socket_tcp.h:52:
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share\nr_api.h:43:
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include\csi_platform.h:53:
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr\r_types.h(184,24): error: typedef redefinition with different types ('int64_t' (aka 'long long') vs 'signed char')
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - typedef R_DEFINED_INT8 INT8;
[task 2019-09-24T18:41:03.587Z] 18:41:03 INFO - ^
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - z:/task_1569342649/build/src/vs2017_15.8.4/SDK\include\10.0.17134.0\shared\basetsd.h(75,29): note: previous definition is here
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - typedef signed char INT8, *PINT8;
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - ^
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nr_socket_tcp.cpp:42:
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nr_socket_tcp.h:52:
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share\nr_api.h:43:
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include\csi_platform.h:53:
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr\r_types.h(204,25): error: typedef redefinition with different types ('uint64_t' (aka 'unsigned long long') vs 'unsigned char')
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - typedef R_DEFINED_UINT8 UINT8;
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - ^
[task 2019-09-24T18:41:03.588Z] 18:41:03 INFO - z:/task_1569342649/build/src/vs2017_15.8.4/SDK\include\10.0.17134.0\shared\basetsd.h(79,29): note: previous definition is here
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - typedef unsigned char UINT8, *PUINT8;
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - ^
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - 2 errors generated.
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - z:/task_1569342649/build/src/config/rules.mk:785: recipe for target 'nr_socket_tcp.i_o' failed
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - mozmake.EXE[4]: *** [nr_socket_tcp.i_o] Error 1
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:03.589Z] 18:41:03 INFO - mozmake.EXE[4]: *** Waiting for unfinished jobs....
[task 2019-09-24T18:41:03.607Z] 18:41:03 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/uriloader/prefetch'
[task 2019-09-24T18:41:03.607Z] 18:41:03 INFO - mkdir -p '.deps/'
[task 2019-09-24T18:41:03.607Z] 18:41:03 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/uriloader/prefetch'
[task 2019-09-24T18:41:03.636Z] 18:41:03 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/uriloader/prefetch'
[task 2019-09-24T18:41:03.636Z] 18:41:03 INFO - uriloader/prefetch/Unified_cpp_uriloader_prefetch0.i_o
[task 2019-09-24T18:41:03.636Z] 18:41:03 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/uriloader/prefetch'
[task 2019-09-24T18:41:03.668Z] 18:41:03 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:03.668Z] 18:41:03 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fomediapacket.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/mediapacket.i_o.pp -Xclang -MT -Xclang mediapacket.i_o z:/task_1569342649/build/src/media/mtransport/mediapacket.cpp
[task 2019-09-24T18:41:03.668Z] 18:41:03 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:03.673Z] 18:41:03 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/caps'
[task 2019-09-24T18:41:03.673Z] 18:41:03 INFO - mkdir -p '.deps/'
[task 2019-09-24T18:41:03.674Z] 18:41:03 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/caps'
[task 2019-09-24T18:41:03.695Z] 18:41:03 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/caps'
[task 2019-09-24T18:41:03.695Z] 18:41:03 INFO - caps/BasePrincipal.i_o
[task 2019-09-24T18:41:03.695Z] 18:41:03 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/caps'
[task 2019-09-24T18:41:04.352Z] 18:41:04 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:04.352Z] 18:41:04 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fonr_timer.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/nr_timer.i_o.pp -Xclang -MT -Xclang nr_timer.i_o z:/task_1569342649/build/src/media/mtransport/nr_timer.cpp
[task 2019-09-24T18:41:04.352Z] 18:41:04 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nr_timer.cpp:65:
[task 2019-09-24T18:41:04.352Z] 18:41:04 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share\nr_api.h:43:
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include\csi_platform.h:53:
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr\r_types.h(184,24): error: typedef redefinition with different types ('int64_t' (aka 'long long') vs 'signed char')
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - typedef R_DEFINED_INT8 INT8;
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - ^
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - z:/task_1569342649/build/src/vs2017_15.8.4/SDK\include\10.0.17134.0\shared\basetsd.h(75,29): note: previous definition is here
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - typedef signed char INT8, *PINT8;
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - ^
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nr_timer.cpp:65:
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share\nr_api.h:43:
[task 2019-09-24T18:41:04.353Z] 18:41:04 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include\csi_platform.h:53:
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr\r_types.h(204,25): error: typedef redefinition with different types ('uint64_t' (aka 'unsigned long long') vs 'unsigned char')
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - typedef R_DEFINED_UINT8 UINT8;
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - ^
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - z:/task_1569342649/build/src/vs2017_15.8.4/SDK\include\10.0.17134.0\shared\basetsd.h(79,29): note: previous definition is here
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - typedef unsigned char UINT8, *PUINT8;
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - ^
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - 2 errors generated.
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - z:/task_1569342649/build/src/config/rules.mk:785: recipe for target 'nr_timer.i_o' failed
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - mozmake.EXE[4]: *** [nr_timer.i_o] Error 1
[task 2019-09-24T18:41:04.354Z] 18:41:04 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:04.363Z] 18:41:04 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/expat/lib'
[task 2019-09-24T18:41:04.363Z] 18:41:04 INFO - mkdir -p '.deps/'
[task 2019-09-24T18:41:04.363Z] 18:41:04 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/parser/expat/lib'
[task 2019-09-24T18:41:05.634Z] 18:41:05 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:05.634Z] 18:41:05 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fodtlsidentity.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/dtlsidentity.i_o.pp -Xclang -MT -Xclang dtlsidentity.i_o z:/task_1569342649/build/src/media/mtransport/dtlsidentity.cpp
[task 2019-09-24T18:41:05.634Z] 18:41:05 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:05.663Z] 18:41:05 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/caps'
[task 2019-09-24T18:41:05.663Z] 18:41:05 INFO - caps/Unified_cpp_caps0.i_o
[task 2019-09-24T18:41:05.666Z] 18:41:05 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/caps'
[task 2019-09-24T18:41:05.830Z] 18:41:05 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/uriloader/exthandler'
[task 2019-09-24T18:41:05.831Z] 18:41:05 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -FonsOSHelperAppService.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/uriloader/exthandler -Iz:/task_1569342649/build/src/obj-firefox/uriloader/exthandler -Iz:/task_1569342649/build/src/uriloader/exthandler/win -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/docshell/base -Iz:/task_1569342649/build/src/dom/base -Iz:/task_1569342649/build/src/dom/ipc -Iz:/task_1569342649/build/src/netwerk/base -Iz:/task_1569342649/build/src/netwerk/protocol/http -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/nsOSHelperAppService.i_o.pp -Xclang -MT -Xclang nsOSHelperAppService.i_o z:/task_1569342649/build/src/uriloader/exthandler/win/nsOSHelperAppService.cpp
[task 2019-09-24T18:41:05.831Z] 18:41:05 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/uriloader/exthandler'
[task 2019-09-24T18:41:05.859Z] 18:41:05 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/prototype'
[task 2019-09-24T18:41:05.860Z] 18:41:05 INFO - mkdir -p '.deps/'
[task 2019-09-24T18:41:05.860Z] 18:41:05 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/parser/prototype'
[task 2019-09-24T18:41:05.882Z] 18:41:05 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/prototype'
[task 2019-09-24T18:41:05.882Z] 18:41:05 INFO - parser/prototype/Unified_cpp_parser_prototype0.i_o
[task 2019-09-24T18:41:05.882Z] 18:41:05 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/parser/prototype'
[task 2019-09-24T18:41:06.082Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.082Z] 18:41:06 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fonr_socket_proxy_config.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/nr_socket_proxy_config.i_o.pp -Xclang -MT -Xclang nr_socket_proxy_config.i_o z:/task_1569342649/build/src/media/mtransport/nr_socket_proxy_config.cpp
[task 2019-09-24T18:41:06.082Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.143Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -FoWebrtcTCPSocketWrapper.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/WebrtcTCPSocketWrapper.i_o.pp -Xclang -MT -Xclang WebrtcTCPSocketWrapper.i_o z:/task_1569342649/build/src/media/mtransport/WebrtcTCPSocketWrapper.cpp
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fonricectx.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/nricectx.i_o.pp -Xclang -MT -Xclang nricectx.i_o z:/task_1569342649/build/src/media/mtransport/nricectx.cpp
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nricectx.cpp:71:
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share\nr_api.h:43:
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include\csi_platform.h:53:
[task 2019-09-24T18:41:06.144Z] 18:41:06 INFO - z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr\r_types.h(184,24): error: typedef redefinition with different types ('int64_t' (aka 'long long') vs 'signed char')
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - typedef R_DEFINED_INT8 INT8;
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - ^
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - z:/task_1569342649/build/src/vs2017_15.8.4/SDK\include\10.0.17134.0\shared\basetsd.h(75,29): note: previous definition is here
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - typedef signed char INT8, *PINT8;
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - ^
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/nricectx.cpp:71:
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share\nr_api.h:43:
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - In file included from z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include\csi_platform.h:53:
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - z:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr\r_types.h(204,25): error: typedef redefinition with different types ('uint64_t' (aka 'unsigned long long') vs 'unsigned char')
[task 2019-09-24T18:41:06.145Z] 18:41:06 INFO - typedef R_DEFINED_UINT8 UINT8;
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - ^
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - z:/task_1569342649/build/src/vs2017_15.8.4/SDK\include\10.0.17134.0\shared\basetsd.h(79,29): note: previous definition is here
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - typedef unsigned char UINT8, *PUINT8;
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - ^
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - 2 errors generated.
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - z:/task_1569342649/build/src/config/rules.mk:785: recipe for target 'nricectx.i_o' failed
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - mozmake.EXE[4]: *** [nricectx.i_o] Error 1
[task 2019-09-24T18:41:06.146Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.167Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/htmlparser'
[task 2019-09-24T18:41:06.167Z] 18:41:06 INFO - mkdir -p '.deps/'
[task 2019-09-24T18:41:06.167Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/parser/htmlparser'
[task 2019-09-24T18:41:06.201Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/htmlparser'
[task 2019-09-24T18:41:06.202Z] 18:41:06 INFO - parser/htmlparser/Unified_cpp_parser_htmlparser0.i_o
[task 2019-09-24T18:41:06.202Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/parser/htmlparser'
[task 2019-09-24T18:41:06.413Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.413Z] 18:41:06 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Fonr_socket_prsock.i_o -c -Iz:/task_1569342649/build/src/obj-firefox/dist/stl_wrappers -DNDEBUG=1 -DTRIMMED=1 -DWIN32_LEAN_AND_MEAN -D_WIN32 -DWIN32 -D_CRT_RAND_S -DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS -DOS_WIN=1 -D_UNICODE -DCHROMIUM_BUILD -DU_STATIC_IMPLEMENTATION -DUNICODE -D_WINDOWS -D_SECURE_ATL -DCOMPILER_MSVC -DWIN -DHAVE_STRDUP -DNR_SOCKET_IS_VOID_PTR -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/media/mtransport/build -Iz:/task_1569342649/build/src/obj-firefox/ipc/ipdl/_ipdlheaders -Iz:/task_1569342649/build/src/ipc/chromium/src -Iz:/task_1569342649/build/src/ipc/glue -Iz:/task_1569342649/build/src/media/mtransport -Iz:/task_1569342649/build/src/media/mtransport/third_party -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/crypto -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/ice -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/net -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/stun -Iz:/task_1569342649/build/src/media/mtransport/third_party/nICEr/src/util -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/event -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/log -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/plugin -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/generic/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/registry -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/share -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/stats -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/util/libekr -Iz:/task_1569342649/build/src/netwerk/srtp/src/crypto/include -Iz:/task_1569342649/build/src/netwerk/srtp/src/include -Iz:/task_1569342649/build/src/media/mtransport/third_party/nrappkit/src/port/win32/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -Qunused-arguments -fcrash-diagnostics-dir=z:/task_1569342649/public/build -TP -nologo -Zc:sizedDealloc- -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-inline-new-delete -Wno-invalid-offsetof -Wno-microsoft-enum-value -Wno-microsoft-include -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Wno-inconsistent-missing-override -Wno-implicit-exception-spec-mismatch -Wno-unused-local-typedef -Wno-ignored-attributes -Wno-used-but-marked-unused -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING -GR- -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/nr_socket_prsock.i_o.pp -Xclang -MT -Xclang nr_socket_prsock.i_o z:/task_1569342649/build/src/media/mtransport/nr_socket_prsock.cpp
[task 2019-09-24T18:41:06.413Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/media/mtransport/build'
[task 2019-09-24T18:41:06.413Z] 18:41:06 INFO - z:/task_1569342649/build/src/config/recurse.mk:74: recipe for target 'media/mtransport/build/target-objects' failed
[task 2019-09-24T18:41:06.414Z] 18:41:06 INFO - mozmake.EXE[3]: *** [media/mtransport/build/target-objects] Error 2
[task 2019-09-24T18:41:06.414Z] 18:41:06 INFO - mozmake.EXE[3]: *** Waiting for unfinished jobs....
[task 2019-09-24T18:41:06.804Z] 18:41:06 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/expat/lib'
[task 2019-09-24T18:41:06.804Z] 18:41:06 INFO - parser/expat/lib/xmlrole.i_o
[task 2019-09-24T18:41:06.804Z] 18:41:06 INFO - z:/task_1569342649/fetches/clang/bin/clang.exe --driver-mode=cl -Xclang -std=gnu99 -Foxmlrole.i_o -c -DNDEBUG=1 -DTRIMMED=1 -DHAVE_EXPAT_CONFIG_H -DSTATIC_EXPORTABLE_JS_API -DMOZ_HAS_MOZGLUE -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -Iz:/task_1569342649/build/src/parser/expat/lib -Iz:/task_1569342649/build/src/obj-firefox/parser/expat/lib -Iz:/task_1569342649/build/src/obj-firefox/dist/include -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nspr -Iz:/task_1569342649/build/src/obj-firefox/dist/include/nss -MD -FI z:/task_1569342649/build/src/obj-firefox/mozilla-config.h -DMOZILLA_CLIENT -Qunused-arguments -guard:cf -fcrash-diagnostics-dir=z:/task_1569342649/public/build -nologo -D_HAS_EXCEPTIONS=0 -guard:cf -W3 -Gy -Zc:inline -Gw -Wno-unknown-pragmas -Wno-ignored-pragmas -Wno-deprecated-declarations -Wno-invalid-noreturn -Z7 -Xclang -load -Xclang z:/task_1569342649/build/src/obj-firefox/build/clang-plugin/clang-plugin.dll -Xclang -add-plugin -Xclang moz-check -O2 -Oy- -WX -Qunused-arguments -DNS_FREE_PERMANENT_DATA=1 /clang:-fprofile-generate -Xclang -MP -Xclang -dependency-file -Xclang .deps/xmlrole.i_o.pp -Xclang -MT -Xclang xmlrole.i_o z:/task_1569342649/build/src/parser/expat/lib/xmlrole.c
[task 2019-09-24T18:41:06.804Z] 18:41:06 INFO - mozmake.EXE[4]: Leaving directory 'z:/task_1569342649/build/src/obj-firefox/parser/expat/lib'
[task 2019-09-24T18:41:07.777Z] 18:41:07 INFO - mozmake.EXE[4]: Entering directory 'z:/task_1569342649/build/src/obj-firefox/parser/expat/lib'
[task 2019-09-24T18:41:07.777Z] 18:41:07 INFO - parser/expat/lib/xmlparse.i_o

Flags: needinfo?(kwright)

(In reply to Bogdan Tara[:bogdan_tara] from comment #12)

Backed out changeset 88334e3a605e (Bug 1572238) for causing windows 2012 bustages

Interesting...looks like there has been some Windows issues with some #includes.

Flags: needinfo?(kwright)
Pushed by kwright@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/81b655003806
Dump assertion stacks using __android_log_print. r=Ehsan
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla71
Assignee: nobody → kwright
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: