Re: arm64 windows nightlies now available

2018-12-20 Thread Kim Moir
This is fantastic news! Congratulations on the launch of arm64 windows nightlies. Kim On Wed, Dec 19, 2018 at 7:55 PM Nathan Froyd wrote: > I'm excited to announce that we have bona fide arm64 windows nightlies > available for download! > >

Re: nasm will soon become a build dependency

2018-12-20 Thread Thomas Daede
nasm is now required for building on Linux. A configure check was missed, so if you are missing nasm, you will see this error: make[4]: *** No rule to make target '../../media/libdav1d/asm/config.o', needed by 'libxul.so'. Stop. This bug tracks adding the configure check:

JS components and modules, subscripts loaded via the subscript loader, mochitest-browser tests, and SJS scripts are now exclusively UTF-8

2018-12-20 Thread Jeff Walden
Hi all, In the distant past, SpiderMonkey APIs consumed source text as two-byte UCS-2 or one-byte |const char*|. Was one-byte text ASCII? UTF-8? EBCDIC? Something else? Who could say; no one thought about text encodings then. *By happenstance* one-byte JS text was Latin-1: a byte is a

PSA - If --disable-e10s is crashing for you on Windows...

2018-12-20 Thread Tom Ritter
It's tracked in https://bugzilla.mozilla.org/show_bug.cgi?id=1515702 - we should be backing it out soon. To solve it immediately, you can add --disable-hardening ___ dev-platform mailing list dev-platform@lists.mozilla.org

Re: nasm will soon become a build dependency

2018-12-20 Thread Cameron McCormack
On Fri, Dec 21, 2018, at 3:17 PM, Martin Thomson wrote: > The OP said >= 2.10. But you appear to have that. Oh, missed that. I just tried building some other versions of nasm from source (since 2.11 is the latest packaged in my distribution) and 2.13 was the earliest that I could build with.

Re: nasm will soon become a build dependency

2018-12-20 Thread Martin Thomson
On Fri, Dec 21, 2018 at 3:01 PM Cameron McCormack wrote: > On Fri, Dec 21, 2018, at 11:05 AM, Thomas Daede wrote: > > nasm is now required for building on Linux. > > Is there a minimum version required? I am getting errors like this > building: > The OP said >= 2.10. But you appear to have

Re: nasm will soon become a build dependency

2018-12-20 Thread Cameron McCormack
On Fri, Dec 21, 2018, at 11:05 AM, Thomas Daede wrote: > nasm is now required for building on Linux. Is there a minimum version required? I am getting errors like this building: /z/moz/g/third_party/dav1d/src/x86/ipred_ssse3.asm:42: error: operand 1: expression is not simple or relocatable $

Re: nasm will soon become a build dependency

2018-12-20 Thread Thomas Daede
On 12/20/18 8:17 PM, Martin Thomson wrote: > The OP said >= 2.10. But you appear to have that. At the time of writing it was, but we now need 2.13. The configure script doesn't check for that either, I will make a note of it in the bug to fix this detection.