|
From: Daniel J S. <dan...@ie...> - 2015-11-25 09:26:52
|
On 11/25/2015 02:39 AM, pl...@pi... wrote: > Hi, > > Building current CVS gnuplot on Fedora 23 x68_64, I found I had to > explicitly give the WXDIR to get it to configure wxt terminal: > > ./configure --prefix=/usr/local --with-qt --with-wx=/usr/libexec/wxGTK3 > > It still fails half way throught the wxt stuff: > > <code> > > wxterminal/wxt_gui.cpp:4197:1: warning: ‘virtual void > wxWindowBase::SetInitialBestSize(const wxSize&)’ is deprecated: use > SetInitialSize() instead. [-Wdeprecated-declarations] > } > ^ > In file included from /usr/include/wx-3.0/wx/wx.h:38:0, > from wxterminal/wxt_gui.h:77, > from wxterminal/wxt_gui.cpp:97: > /usr/include/wx-3.0/wx/window.h:1872:13: note: declared here > inline void wxWindowBase::SetInitialBestSize(const wxSize& size) > ^ > Makefile:926: recipe for target 'wxterminal/wxt_gui.o' failed > make[4]: *** [wxterminal/wxt_gui.o] Error 1 > > </code> > > > There is a raft ( hundreds ) of such deprecation warnings that make it > difficult to find the original error. > > Is there a way to turn off these warnings so that I can see what is > going wrong? Sometimes the warnings and errors go to separate streams, e.g., stdout vs. stderr. Try redirecting the output of the compilation to file and see if there is anything left behind that looks like an error. Dan |