Re: [sage-devel] Re: Sage-6.5 Source Fails to Compile

2015-02-23 Thread Jeroen Demeyer
Nobody should use -Werror on production compiles. I consider this an upstream bug. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegr

[sage-devel] Re: Sage-6.5 Source Fails to Compile

2015-02-22 Thread Richard
Volker: Yes, your suggested 'fix' works. My standard CFLAGS and CXXFLAGS that was failing on zeromq: CFLAGS=-march=native -O2 -fomit-frame-pointer -pipe -W -Wall CXXFLAGS=-march=native -O2 -fomit-frame-pointer -pipe -W -Wall The following work: CFLAGS=-march=native -O2 -fomit-frame-pointer -pipe

[sage-devel] Re: Sage-6.5 Source Fails to Compile

2015-02-22 Thread Volker Braun
Wrong link to zeromq master, should be https://github.com/zeromq/zeromq4-1/commit/00aeaddf945cf7bdca33473fdd591a0f874ab2b4 On Sunday, February 22, 2015 at 9:45:26 AM UTC+1, Volker Braun wrote: > > Seems to be fixed in the next zeromq version: > https://github.com/zeromq/libzmq/tree/master/tests

[sage-devel] Re: Sage-6.5 Source Fails to Compile

2015-02-22 Thread Volker Braun
Seems to be fixed in the next zeromq version: https://github.com/zeromq/libzmq/tree/master/tests Can you try CXXFLAGS="-Wno-error=unused-parameter" make or maybe just CFLAGS. If it works we can add it as a workaround. On Sunday, February 22, 2015 at 4:07:13 AM UTC+1, rich...@pacbell.net wr