Re: -Werror vs. NetBSD

2016-02-04 Thread Martin Thomson
Yes, the landing of the first patches for TLS 1.3 was a bit messy. We are working on fixing these problems. We do have a requirement for c99, which might account for the //comments. We are trying not to land any of those though. On Feb 4, 2016 8:27 PM, "Thomas Klausner"

Re: -Werror vs. NetBSD

2016-02-04 Thread Thomas Klausner
Hi Martin! Thanks for the reply. Yes, of course I can file a bug report for that. I guess I should finish the patch first? For two days now, I see a different build failure though: gcc -o NetBSD7.99.26_64_OPT.OBJ/tls13hkdf.o -c -O -fPIC -DPIC -ansi -Wall -Wno-switch -pipe -DNETBSD -Dunix

cross compiling NSS

2016-02-04 Thread Andrew Cagney
Hi, I'm trying to understand the "correct" way to cross compile NSS. The first approach I tried is based on firefox's config/external/nss/Makefile.in where I found: ifdef CROSS_COMPILE DEFAULT_GMAKE_FLAGS += \ NATIVE_CC='$(HOST_CC)' \ CC='$(CC)' \ CCC='$(CXX)' \

Re: cross compiling NSS

2016-02-04 Thread Andrew Cagney
FYI, I solved the CFLAGS mystery: On 4 February 2016 at 10:59, Andrew Cagney wrote: > ifdef CROSS_COMPILE > DEFAULT_GMAKE_FLAGS += \ > NATIVE_CC='$(HOST_CC)' \ > CC='$(CC)' \ > CCC='$(CXX)' \ > LINK='$(LD)' \ > AS='$(AS)' \ >