Hi Alan
Can you confirm that is the case for
unmodified PLplot from the tip of the git master branch?
Yes, it is the unmodified PLplot from the tip of the git master branch
cloned today.
I only added this line
assert(pls)
in wxPLplotDemo.cpp, which you can see in the output
here on Debian Jessie with
the GTK+ version of wxwidgets-3.0.2
it could be the GTK+ version, yes.
In this case, I think the wxwidgets version does not matter, since it
picks whatever GTK+ it finds.
This can be checked on Debian with
rpm -qa | grep -i gtk2
and it shows on my CentOS 6.8
gtk2-devel-2.24.23-8.el6.x86_64
I also tried in
Ubuntu 16.04 i386
Ubuntu 14.04 x86_64
and the same happens (don't know which GTK+ they have)
these 2 above I just used the wxwidgets libraries from packages
the only way I was able to solve this to use PLplot/wxwidgets in my
code was to do a custom
wxwidgets window that does not use wxPLplotwindow (the class used by
the demo)
this code is here
https://github.com/pedro-vicente/plplot-wxwidgets
and the way to avoid the bug is just to explicitally call the stream
creation code with a function call,
named CreatePLplotstream()
(that as of now is supposed to be automatically called in the wxWidgets
window OnCreate(),
but apparently it is not)
my use is
wx_PLplotFrame_stream *frame = new wx_PLplotFrame_stream();
frame->Create(NULL, wxID_ANY, wxT("wxPLplot"),
wxDefaultPosition,
wxSize(900, 700));
frame->CreatePLplotstream();
frame->Show();
wx_PLplotstream* pls = frame->GetStream();
assert(pls);
to submit a proper bug report to us with complete cmake output
is there a place to submit bug reports?
or just send here by email?
The output is attached
-Pedro
On 2016-12-14 14:47, Alan W. Irwin wrote:
On 2016-12-14 11:47-0500 Pedro Vicente wrote:
Hi Phil
I am using the attached qt project file on my CentOS 6.8 build,
adapted to build
examples/c++/wxPLplotDemo.cpp
to use, place the file in
examples/c++
just change these lines for your own case
dir_inc_plplot =
/data/home002/pvicente/plplot-plplot-install/include/plplot
dir_lib_plplot = /data/home002/pvicente/plplot-plplot-install/lib
dir_inc_wx =
/data/data127/pvicente/install/wxwidgets-3.1.0d/include/wx-3.1
dir_inc_wx_setup =
/data/data127/pvicente/install/wxwidgets-3.1.0d/lib/wx/include/gtk2-unicode-static-3.1
dir_lib_wx = /data/data127/pvicente/install/wxwidgets-3.1.0d/lib
in QtCreator change in Projects/Run, disable the the "Run in
Terminal"
this is the stack on the window creation as shown in QtCreator
0 wxWindow::PostCreation window.cpp 2753 0x4d9ea4
1 wxTopLevelWindowGTK::Create toplevel.cpp 674 0x4cdb79
2 wxFrame::Create frame.cpp 48 0x4e672b
3 MyApp::OnInit wxPLplotDemo.cpp 148 0x4259d8
4 wxAppConsoleBase::CallOnInit app.h 93 0x426c23
5 wxEntry init.cpp 487 0x6bf36d
6 wxEntry init.cpp 515 0x6bf475
7 main wxPLplotDemo.cpp 131 0x4258a4
As opposed to the wxWidgets Windows build, that uses the WIN32 API,
for linux it's a totally different API (GTK),
so the issue may be a wxWidgets GTK code thing
Hi Pedro:
Just to interject here, my impression of this thread is you have
mostly been discussing issues with your own software, but now it
appears you finding issues with the git version of wxPLplotDemo
rather
than your own software. Can you confirm that is the case for
unmodified PLplot from the tip of the git master branch? Because if
so, that would be quite interesting because here on Debian Jessie
with
the GTK+ version of wxwidgets-3.0.2 installed, when I build the
test_wxPLplotDemo target, the wxPLplotDemo GUI builds and runs with
absolutely no issues.
If you really do have some build or run-time issue there with
wxPLplotDemo for _unmodified_ PLplot, then my advice is to submit a
proper bug report to
us with complete cmake output from an initially empty build tree
captured in the usual way, i.e.,
cmake <your usual cmake options> <path to PLplot source tree> >&
cmake.out
_where those options include using the "Unix Makefiles" generator_.
Then
run
make VERBOSE=1 test_wxPLplotDemo >& test_wxPLplotDemo.out
and submit both cmake.out and test_wxPLplotDemo.out here.
It may be that your issue is simply that the PLplot wxwidgets-related
code is not compatible with the GTK+ version of wxwidgets you have
installed on your Linux platforms, i.e., your GTK+ version of
wxwidgets may be too old (which we can see from your cmake.out file)
or too new. In the latter case I assume iPhil will eventually be
able to
replicate your issue with that same GTK+ version of wxwidgets and
then
fix whatever that incompatibility is.
Alan
__________________________
Alan W. Irwin
Astronomical research affiliation with Department of Physics and
Astronomy,
University of Victoria (astrowww.phys.uvic.ca).
Programming affiliations with the FreeEOS equation-of-state
implementation for stellar interiors (freeeos.sf.net); the Time
Ephemerides project (timeephem.sf.net); PLplot scientific plotting
software package (plplot.sf.net); the libLASi project
(unifont.org/lasi); the Loads of Linux Links project (loll.sf.net);
and the Linux Brochure Project (lbproject.sf.net).
__________________________
Linux-powered Science
__________________________
--
Pedro Vicente
pedro.vice...@space-research.org
http://www.space-research.org/
-- The C compiler identification is GNU 4.4.7
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- CMake version = 3.6.2
-- CMAKE_SYSTEM_NAME = Linux
-- SH_EXECUTABLE = /bin/bash
-- Checking whether system has ANSI C header files
-- Looking for 4 include files stdlib.h, ..., float.h
-- Looking for 4 include files stdlib.h, ..., float.h - found
-- Performing Test memchrExists
-- Performing Test memchrExists - Success
-- Performing Test freeExists
-- Performing Test freeExists - Success
-- Check for whether ctype.h macros work on characters with the
high bit set.
-- High-bit characters - work
-- ANSI C header files - found
-- Looking for include file unistd.h
-- Looking for include file unistd.h - found
-- Looking for include file termios.h
-- Looking for include file termios.h - found
-- Looking for include file stdint.h
-- Looking for include file stdint.h - found
-- Looking for crt_externs.h
-- Looking for crt_externs.h - not found
-- Performing Test HAVE_SYS_WAIT_H
-- Performing Test HAVE_SYS_WAIT_H - Success
-- Looking for DIR symbol in sys/types.h;dirent.h
-- Looking for DIR symbol in sys/types.h;dirent.h - found
-- Check for signal return type in <signal.h>
-- Check for signal handler return type type void - found
-- Looking for popen
-- Looking for popen - found
-- Looking for usleep
-- Looking for usleep - found
-- Looking for nanosleep
-- Looking for nanosleep - found
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for mkdtemp
-- Looking for mkdtemp - found
-- Looking for mkfifo
-- Looking for mkfifo - found
-- Looking for unlink
-- Looking for unlink - found
-- Looking for _NSGetArgc
-- Looking for _NSGetArgc - not found
-- Looking for isfinite
-- Looking for isfinite - found
-- Looking for finite
-- Looking for finite - found
-- Looking for isnan
-- Looking for isnan - found
-- Looking for isinf
-- Looking for isinf - found
-- Looking for snprintf
-- Looking for snprintf - found
-- SWIG_VERSION = 1.3.40
-- Found Perl: /usr/bin/perl (found version "5.10.1")
-- WARNING: Perl module XML::DOM not found
-- The CXX compiler identification is GNU 4.4.7
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for using namespace support
-- Check for using namespace - found
-- Looking for C++ include cmath
-- Looking for C++ include cmath - found
-- Check for broken isnan support in <cmath>
-- Check for isnan in <cmath> - found
-- Check for using stdint.h with CXX compiler
-- Check for using stdint.h with CXX compiler - ok
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.23")
-- Looking for pkg-config - found
-- cxx_compiler_library_pathname_list =
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/libstdc++.so;/usr/lib64/libm.so;/usr/lib64/libc.so
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so -
found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Found X11: /usr/lib64/libX11.so
-- X11_FOUND = 1
-- X11_INCLUDE_DIR = /usr/include
-- X11_COMPILE_FLAGS = -I/usr/include
-- X11_LIBRARIES =
/usr/lib64/libSM.so;/usr/lib64/libICE.so;/usr/lib64/libX11.so;/usr/lib64/libXext.so
-- WARNING: Java requires shared libraries. Disabling java binding
-- WARNING: Python requires shared libraries. Disabling Python binding
-- WARNING: Octave requires shared libraries. Disabling Octave binding
-- WARNING: ENABLE_tcl is OFF so disabling everything else that is Tcl/Tk
related
-- A test cmake run with language = Ada enabled failed.
-- Specify -DENABLE_compiler_diagnostics=ON to see full CMake diagnostics
concerning this failure.
-- WARNING: no working Ada compiler so disabling Ada binding and examples.
-- WARNING: Lua requires shared libraries. Disabling Lua binding
-- A test cmake run with language = D enabled failed.
-- Specify -DENABLE_compiler_diagnostics=ON to see full CMake diagnostics
concerning this failure.
-- WARNING: no working D compiler so disabling D binding and examples.
-- WARNING: SHAPELIB not found. Setting HAVE_SHAPELIB to OFF.
-- Found Freetype: /usr/lib64/libfreetype.so (found version "2.3.11")
-- FREETYPE_CFLAGS = -I/usr/include -I/usr/include/freetype2
-- FREETYPE_LIBRARIES = /usr/lib64/libfreetype.so
Fonts not found - disabling freetype
-- Check for NaN awareness in C compiler
-- Check for NaN awareness in C compiler - found
-- Neither qhull/qhull_a.h header nor libqhull/qhull_a.h could be found
-- qhull library could not be found
-- Could NOT find QHULL (missing: QHULL_INCLUDE_DIRS QHULL_LIBRARIES
QHULL_LIBRARY_DIRS)
-- QHULL_INCLUDE_DIRS =
-- QHULL_LIBRARIES =
-- WARNING: at least one of QHULL_INCLUDE_DIRS or QHULL_LIBRARIES is false so
setting PL_HAVE_QHULL to OFF.
-- Checking for module 'pango'
-- Found pango, version 1.28.1
-- Checking for module 'pangoft2'
-- Found pangoft2, version 1.28.1
-- WARNING: Shared libraries not built. Setting ENABLE_DYNDRIVERS OFF.
-- Checking for module 'pangocairo'
-- Found pangocairo, version 1.28.1
-- Not a Windows platform so setting wincairo driver to OFF.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- WARNING: ENABLE_tk OFF. Therefore turning off tk, tkwin, and ntk devices
-- Checking for modules 'lasi;pango;pangoft2'
-- No package 'lasi' found
includedir =
libdir =
linkflags =
cflags =
-- WARNING: pango, pangoft2, or lasi not found with pkg-config.
Setting PLD_psttf to OFF. Please install all of these packages
and/or set the environment variable PKG_CONFIG_PATH appropriately.
-- Found unsuitable Qt version "" from NOTFOUND
-- WARNING: Suitable Qt4 development environment not found so trying Qt5
instead.
CMake Warning at cmake/modules/qt.cmake:144 (find_package):
By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Qt5", but
CMake did not find one.
Could not find a package configuration file provided by "Qt5" (requested
version 5.3.1) with any of the following names:
Qt5Config.cmake
qt5-config.cmake
Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR"
to a directory containing one of the above files. If "Qt5" provides a
separate development package or SDK, be sure it has been installed.
Call Stack (most recent call first):
cmake/modules/drivers.cmake:96 (include)
cmake/modules/plplot.cmake:549 (include)
CMakeLists.txt:135 (include)
-- WARNING: Suitable Qt5 development environment not found so disabling qt
-- WARNING: ENABLE_qt is OFF so setting all qt devices to OFF.
-- WARNING: PLPLOT_USE_QT5 is ON so setting ENABLE_pyqt4 to OFF.
-- WARNING: ENABLE_python is OFF so setting ENABLE_pyqt5 to OFF.
-- wxWidgets_FOUND : TRUE
-- wxWidgets_INCLUDE_DIRS :
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1;/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-- wxWidgets_LIBRARY_DIRS :
/data/data127/pvicente/install/wxwidgets-3.1.0/lib
-- wxWidgets_LIBRARIES :
-L/data/data127/pvicente/install/wxwidgets-3.1.0/lib;-pthread;;;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a;-pthread;-lX11;-lXxf86vm;-lSM;-pthread;-lgtk-x11-2.0;-lgdk-x11-2.0;-latk-1.0;-lgio-2.0;-lpangoft2-1.0;-lpangocairo-1.0;-lgdk_pixbuf-2.0;-lcairo;-lpango-1.0;-lfreetype;-lfontconfig;-lgobject-2.0;-lgmodule-2.0;-lgthread-2.0;-lrt;-lglib-2.0;-lpng;-ljpeg;-lwxregexu-3.1;-lwxtiff-3.1;-lz;-ldl;-lm;-llzma
-- wxWidgets_CXX_FLAGS : -pthread
-- wxWidgets_USE_FILE : UsewxWidgets
-- Checking whether wxwidgets version >= 3.0.0
-- Performing Test WX_VERSION_LARGE_ENOUGH
-- Performing Test WX_VERSION_LARGE_ENOUGH - Success
-- wxwidgets_COMPILE_FLAGS =
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__
-- wxwidgets_LINK_FLAGS =
-pthread;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a;-pthread;/usr/lib64/libX11.so;/usr/lib64/libXxf86vm.so;/usr/lib64/libSM.so;-pthread;/usr/lib64/libgtk-x11-2.0.so;/usr/lib64/libgdk-x11-2.0.so;/usr/lib64/libatk-1.0.so;/usr/lib64/libgio-2.0.so;/usr/lib64/libpangoft2-1.0.so;/usr/lib64/libpangocairo-1.0.so;/usr/lib64/libgdk_pixbuf-2.0.so;/usr/lib64/libcairo.so;/usr/lib64/libpango-1.0.so;/usr/lib64/libfreetype.so;/usr/lib64/libfontconfig.so;/usr/lib64/libgobject-2.0.so;/usr/lib64/libgmodule-2.0.so;/usr/lib64/libgthread-2.0.so;/usr/lib64/librt.so;/usr/lib64/libglib-2.0.so;/usr/lib64/libpng.so;/usr/lib64/libjpeg.so;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxregexu-3.1.a;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxtiff-3.1.a;/usr/lib64/libz.so;/usr/lib64/libdl.so;/usr/lib64/libm.so;/usr/lib64/liblzma.so
-- wxwidgets_RPATH = /data/data127/pvicente/install/wxwidgets-3.1.0/lib
-- RT_LIB = /usr/lib64/librt.so
-- Looking for haru pdf header and library
-- Looking for haru pdf header and library - not found
-- WARNING: Setting PLD_pdf to OFF.
-- WARNING: Static build with ENABLE_ocaml_static false. Therefore, disabling
OCaml binding
-- WARNING: ENABLE_ocaml is OFF so disabling Plcairo module and lablgtk2 support
-- WARNING: validate target will not be available to check for syntax issues in
the PLplot DocBook documentation because onsgmls (or env) was not found.
pc_libplplot_LINK_FLAGS =
-pthread;/usr/lib64/libpangocairo-1.0.so;/usr/lib64/libpango-1.0.so;/usr/lib64/libcairo.so;/usr/lib64/libgobject-2.0.so;/usr/lib64/libgmodule-2.0.so;/usr/lib64/libgthread-2.0.so;/usr/lib64/librt.so;/usr/lib64/libglib-2.0.so;/usr/lib64/libSM.so;/usr/lib64/libICE.so;/usr/lib64/libX11.so;/usr/lib64/libXext.so;/usr/lib64/libSM.so;/usr/lib64/libICE.so;/usr/lib64/libX11.so;/usr/lib64/libXext.so;/usr/lib64/libpthread.so;-pthread;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a;-pthread;/usr/lib64/libX11.so;/usr/lib64/libXxf86vm.so;/usr/lib64/libSM.so;-pthread;/usr/lib64/libgtk-x11-2.0.so;/usr/lib64/libgdk-x11-2.0.so;/usr/lib64/libatk-1.0.so;/usr/lib64/libgio-2.0.so;/usr/lib64/libpangoft2-1.0.so;/usr/lib64/libpangocairo-1.0.so;/usr/lib64/libgdk_pixbuf-2.0.so;/usr/lib64/libcairo.so;/usr/lib64/libpango-1.0.so;/usr/lib64/libfreetype.so;/usr/lib64/libfontconfig.so;/usr/lib64/libgobject-2.0.so;/usr/lib64/libgmodule-2.0.so;/usr/lib64/libgthread-2.0.so;/usr/lib64/librt.so;/usr/lib64/libglib-2.0.so;/usr/lib64/libpng.so;/usr/lib64/libjpeg.so;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxregexu-3.1.a;/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxtiff-3.1.a;/usr/lib64/libz.so;/usr/lib64/libdl.so;/usr/lib64/libm.so;/usr/lib64/liblzma.so;/usr/lib64/libm.so;-lcsirocsa;-lqsastime;/usr/lib64/librt.so
-- WARNING: Perl modules XML::Parser and/or XML::DOM not available
so cannot check that swig_documentation.i is up to date.
-- TEST_ENVIRONMENT =
EXAMPLES_DIR=/data/home002/pvicente/plplot-plplot/build/examples
SRC_EXAMPLES_DIR=/data/home002/pvicente/plplot-plplot/examples
OUTPUT_DIR=/data/home002/pvicente/plplot-plplot/build/ctest_examples_output_dir
VC_CTEST_DIRECTORY=
-- Determine compile and link flags for extXdrawable_demo
-- Checking for module 'gtk+-x11-2.0'
-- Found gtk+-x11-2.0, version 2.24.23
-- Determine compile and link flags for ext-cairo-test
-- Checking for module 'cairo'
-- Found cairo, version 1.8.8
Summary of CMake build system results for PLplot
Install location variables which can be set by the user:
CMAKE_INSTALL_PREFIX: /data/home002/pvicente/plplot-plplot-install
CMAKE_INSTALL_EXEC_PREFIX /data/home002/pvicente/plplot-plplot-install
CMAKE_INSTALL_BINDIR /data/home002/pvicente/plplot-plplot-install/bin
CMAKE_INSTALL_DATADIR /data/home002/pvicente/plplot-plplot-install/share
CMAKE_INSTALL_LIBDIR /data/home002/pvicente/plplot-plplot-install/lib
CMAKE_INSTALL_INCLUDEDIR /data/home002/pvicente/plplot-plplot-install/include
CMAKE_INSTALL_INFODIR
/data/home002/pvicente/plplot-plplot-install/share/info
CMAKE_INSTALL_MANDIR
/data/home002/pvicente/plplot-plplot-install/share/man
Derived install location variables:
DATA_DIR /data/home002/pvicente/plplot-plplot-install/share/plplot5.11.1
LIB_DIR /data/home002/pvicente/plplot-plplot-install/lib
INCLUDE_DIR /data/home002/pvicente/plplot-plplot-install/include/plplot
BIN_DIR /data/home002/pvicente/plplot-plplot-install/bin
TCL_DIR
/data/home002/pvicente/plplot-plplot-install/share/plplot5.11.1/tcl
ADA_INCLUDE_DIR
/data/home002/pvicente/plplot-plplot-install/share/ada/adainclude/plplotada
ADA_LIB_DIR
/data/home002/pvicente/plplot-plplot-install/lib/ada/adalib/plplotada
PYTHON_INSTDIR
DRV_DIR
/data/home002/pvicente/plplot-plplot-install/lib/plplot5.11.1/drivers
DOC_DIR /data/home002/pvicente/plplot-plplot-install/share/doc/plplot
MAN_DIR /data/home002/pvicente/plplot-plplot-install/share/man
INFO_DIR /data/home002/pvicente/plplot-plplot-install/share/info
Other important CMake variables:
CMAKE_SYSTEM_NAME: Linux
UNIX: 1
WIN32:
APPLE:
MSVC: (MSVC_VERSION: )
MINGW:
MSYS:
CYGWIN:
BORLAND:
WATCOM:
SWIG_FOUND: 1
PERL_FOUND: TRUE
X11_FOUND: 1
CMAKE_BUILD_TYPE:
CMAKE_C_COMPILER CMAKE_C_FLAGS: /usr/bin/cc -g
CMAKE_CXX_COMPILER CMAKE_CXX_FLAGS: /usr/bin/c++ -g
ENABLE_DYNDRIVERS: OFF
DRIVERS_LIST: cairo;mem;null;ps;svg;wxwidgets;xfig;xwin
DEVICES_LIST:
memcairo;extcairo;pdfcairo;pngcairo;pscairo;epscairo;svgcairo;xcairo;mem;null;ps;svg;wxwidgets;xfig;xwin
Library options:
BUILD_SHARED_LIBS: OFF PL_DOUBLE: ON
Optional libraries:
PL_HAVE_QHULL: OFF WITH_CSA: ON
PL_HAVE_FREETYPE: PL_HAVE_PTHREAD: ON
HAVE_AGG: HAVE_SHAPELIB: OFF
Language Bindings:
ENABLE_ada: OFF
ENABLE_cxx: ON
ENABLE_d: OFF
ENABLE_f95: OFF
ENABLE_java: OFF
ENABLE_lua: OFF
ENABLE_ocaml: OFF
ENABLE_octave: OFF
ENABLE_pdl: OFF
ENABLE_python: OFF
ENABLE_qt: OFF
ENABLE_pyqt4: OFF
ENABLE_pyqt5: OFF
ENABLE_tcl: OFF
ENABLE_itcl: OFF
ENABLE_tk: OFF
ENABLE_itk: OFF
ENABLE_wxwidgets: ON
-- Configuring done
-- Generating done
-- Build files have been written to: /data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake
-H/data/home002/pvicente/plplot-plplot
-B/data/home002/pvicente/plplot-plplot/build --check-build-system
CMakeFiles/Makefile.cmake 0
make -f CMakeFiles/Makefile2 test_wxPLplotDemo
make[1]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake
-H/data/home002/pvicente/plplot-plplot
-B/data/home002/pvicente/plplot-plplot/build --check-build-system
CMakeFiles/Makefile.cmake 0
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_progress_start /data/home002/pvicente/plplot-plplot/build/CMakeFiles 26
make -f CMakeFiles/Makefile2 examples/CMakeFiles/test_wxPLplotDemo.dir/all
make[2]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
make -f include/CMakeFiles/plhershey-unicode-gen.dir/build.make
include/CMakeFiles/plhershey-unicode-gen.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/include
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/include
/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode-gen.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode-gen.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode-gen.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode-gen.dir/depend.internal".
Scanning dependencies of target plhershey-unicode-gen
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f include/CMakeFiles/plhershey-unicode-gen.dir/build.make
include/CMakeFiles/plhershey-unicode-gen.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 0%] Building C object
include/CMakeFiles/plhershey-unicode-gen.dir/__/fonts/plhershey-unicode-gen.c.o
cd /data/home002/pvicente/plplot-plplot/build/include && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -g -o
CMakeFiles/plhershey-unicode-gen.dir/__/fonts/plhershey-unicode-gen.c.o -c
/data/home002/pvicente/plplot-plplot/fonts/plhershey-unicode-gen.c
[ 0%] Linking C executable plhershey-unicode-gen
cd /data/home002/pvicente/plplot-plplot/build/include &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/plhershey-unicode-gen.dir/link.txt --verbose=1
/usr/bin/cc -g
CMakeFiles/plhershey-unicode-gen.dir/__/fonts/plhershey-unicode-gen.c.o -o
plhershey-unicode-gen -rdynamic
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 0%] Built target plhershey-unicode-gen
make -f include/CMakeFiles/plhershey-unicode.h_built.dir/build.make
include/CMakeFiles/plhershey-unicode.h_built.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/include
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/include
/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode.h_built.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode.h_built.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode.h_built.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/include/CMakeFiles/plhershey-unicode.h_built.dir/depend.internal".
Scanning dependencies of target plhershey-unicode.h_built
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f include/CMakeFiles/plhershey-unicode.h_built.dir/build.make
include/CMakeFiles/plhershey-unicode.h_built.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 3%] Generating plhershey-unicode.h
cd /data/home002/pvicente/plplot-plplot/build/include &&
./plhershey-unicode-gen
/data/home002/pvicente/plplot-plplot/fonts/plhershey-unicode.csv
/data/home002/pvicente/plplot-plplot/build/include/plhershey-unicode.h
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 3%] Built target plhershey-unicode.h_built
make -f lib/csa/CMakeFiles/csirocsa.dir/build.make
lib/csa/CMakeFiles/csirocsa.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/lib/csa
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/lib/csa
/data/home002/pvicente/plplot-plplot/build/lib/csa/CMakeFiles/csirocsa.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/csa/CMakeFiles/csirocsa.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/csa/CMakeFiles/csirocsa.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/csa/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/csa/CMakeFiles/csirocsa.dir/depend.internal".
Scanning dependencies of target csirocsa
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f lib/csa/CMakeFiles/csirocsa.dir/build.make
lib/csa/CMakeFiles/csirocsa.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 7%] Building C object lib/csa/CMakeFiles/csirocsa.dir/csa.c.o
cd /data/home002/pvicente/plplot-plplot/build/lib/csa && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -g -fPIC -o CMakeFiles/csirocsa.dir/csa.c.o -c
/data/home002/pvicente/plplot-plplot/lib/csa/csa.c
[ 7%] Linking C static library libcsirocsa.a
cd /data/home002/pvicente/plplot-plplot/build/lib/csa &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -P
CMakeFiles/csirocsa.dir/cmake_clean_target.cmake
cd /data/home002/pvicente/plplot-plplot/build/lib/csa &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/csirocsa.dir/link.txt --verbose=1
/usr/bin/ar qc libcsirocsa.a CMakeFiles/csirocsa.dir/csa.c.o
/usr/bin/ranlib libcsirocsa.a
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 7%] Built target csirocsa
make -f lib/qsastime/CMakeFiles/tai-utc-gen.dir/build.make
lib/qsastime/CMakeFiles/tai-utc-gen.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/lib/qsastime
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/lib/qsastime
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc-gen.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc-gen.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc-gen.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc-gen.dir/depend.internal".
Scanning dependencies of target tai-utc-gen
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f lib/qsastime/CMakeFiles/tai-utc-gen.dir/build.make
lib/qsastime/CMakeFiles/tai-utc-gen.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 7%] Building C object lib/qsastime/CMakeFiles/tai-utc-gen.dir/tai-utc-gen.c.o
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build/lib/qsastime -g -o
CMakeFiles/tai-utc-gen.dir/tai-utc-gen.c.o -c
/data/home002/pvicente/plplot-plplot/lib/qsastime/tai-utc-gen.c
[ 7%] Linking C executable tai-utc-gen
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/tai-utc-gen.dir/link.txt --verbose=1
/usr/bin/cc -g CMakeFiles/tai-utc-gen.dir/tai-utc-gen.c.o -o tai-utc-gen
-rdynamic -lm
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 7%] Built target tai-utc-gen
make -f lib/qsastime/CMakeFiles/tai-utc.h_built.dir/build.make
lib/qsastime/CMakeFiles/tai-utc.h_built.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/lib/qsastime
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/lib/qsastime
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc.h_built.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc.h_built.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc.h_built.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/tai-utc.h_built.dir/depend.internal".
Scanning dependencies of target tai-utc.h_built
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f lib/qsastime/CMakeFiles/tai-utc.h_built.dir/build.make
lib/qsastime/CMakeFiles/tai-utc.h_built.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 11%] Generating tai-utc.h
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && ./tai-utc-gen
/data/home002/pvicente/plplot-plplot/lib/qsastime/tai-utc.dat
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/tai-utc.h
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 11%] Built target tai-utc.h_built
make -f lib/qsastime/CMakeFiles/deltaT-gen.dir/build.make
lib/qsastime/CMakeFiles/deltaT-gen.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/lib/qsastime
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/lib/qsastime
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT-gen.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT-gen.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT-gen.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT-gen.dir/depend.internal".
Scanning dependencies of target deltaT-gen
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f lib/qsastime/CMakeFiles/deltaT-gen.dir/build.make
lib/qsastime/CMakeFiles/deltaT-gen.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 11%] Building C object lib/qsastime/CMakeFiles/deltaT-gen.dir/deltaT-gen.c.o
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build/lib/qsastime -g -o
CMakeFiles/deltaT-gen.dir/deltaT-gen.c.o -c
/data/home002/pvicente/plplot-plplot/lib/qsastime/deltaT-gen.c
[ 15%] Building C object lib/qsastime/CMakeFiles/deltaT-gen.dir/dspline.c.o
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build/lib/qsastime -g -o
CMakeFiles/deltaT-gen.dir/dspline.c.o -c
/data/home002/pvicente/plplot-plplot/lib/qsastime/dspline.c
[ 15%] Linking C executable deltaT-gen
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/deltaT-gen.dir/link.txt --verbose=1
/usr/bin/cc -g CMakeFiles/deltaT-gen.dir/deltaT-gen.c.o
CMakeFiles/deltaT-gen.dir/dspline.c.o -o deltaT-gen -rdynamic
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 15%] Built target deltaT-gen
make -f lib/qsastime/CMakeFiles/deltaT.h_built.dir/build.make
lib/qsastime/CMakeFiles/deltaT.h_built.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/lib/qsastime
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/lib/qsastime
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT.h_built.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT.h_built.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT.h_built.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/deltaT.h_built.dir/depend.internal".
Scanning dependencies of target deltaT.h_built
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f lib/qsastime/CMakeFiles/deltaT.h_built.dir/build.make
lib/qsastime/CMakeFiles/deltaT.h_built.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 19%] Generating deltaT.h
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && ./deltaT-gen
/data/home002/pvicente/plplot-plplot/lib/qsastime/deltaT.dat
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/deltaT.h
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 19%] Built target deltaT.h_built
make -f lib/qsastime/CMakeFiles/qsastime.dir/build.make
lib/qsastime/CMakeFiles/qsastime.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/lib/qsastime
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/lib/qsastime
/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/qsastime.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/qsastime.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/qsastime.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/lib/qsastime/CMakeFiles/qsastime.dir/depend.internal".
Scanning dependencies of target qsastime
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f lib/qsastime/CMakeFiles/qsastime.dir/build.make
lib/qsastime/CMakeFiles/qsastime.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 19%] Building C object lib/qsastime/CMakeFiles/qsastime.dir/qsastime.c.o
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build/lib/qsastime -g -fPIC -o
CMakeFiles/qsastime.dir/qsastime.c.o -c
/data/home002/pvicente/plplot-plplot/lib/qsastime/qsastime.c
[ 19%] Building C object lib/qsastime/CMakeFiles/qsastime.dir/dsplint.c.o
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build/lib/qsastime -g -fPIC -o
CMakeFiles/qsastime.dir/dsplint.c.o -c
/data/home002/pvicente/plplot-plplot/lib/qsastime/dsplint.c
[ 23%] Linking C static library libqsastime.a
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -P
CMakeFiles/qsastime.dir/cmake_clean_target.cmake
cd /data/home002/pvicente/plplot-plplot/build/lib/qsastime &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/qsastime.dir/link.txt --verbose=1
/usr/bin/ar qc libqsastime.a CMakeFiles/qsastime.dir/qsastime.c.o
CMakeFiles/qsastime.dir/dsplint.c.o
/usr/bin/ranlib libqsastime.a
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 23%] Built target qsastime
make -f src/CMakeFiles/plplot.dir/build.make src/CMakeFiles/plplot.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/src
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/src
/data/home002/pvicente/plplot-plplot/build/src/CMakeFiles/plplot.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/src/CMakeFiles/plplot.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/src/CMakeFiles/plplot.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/src/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/src/CMakeFiles/plplot.dir/depend.internal".
Scanning dependencies of target plplot
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f src/CMakeFiles/plplot.dir/build.make src/CMakeFiles/plplot.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 23%] Building C object src/CMakeFiles/plplot.dir/pdfutils.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/pdfutils.c.o -c
/data/home002/pvicente/plplot-plplot/src/pdfutils.c
[ 23%] Building C object src/CMakeFiles/plplot.dir/plmem.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plmem.c.o -c
/data/home002/pvicente/plplot-plplot/src/plmem.c
[ 26%] Building C object src/CMakeFiles/plplot.dir/plaffine.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plaffine.c.o -c
/data/home002/pvicente/plplot-plplot/src/plaffine.c
[ 26%] Building C object src/CMakeFiles/plplot.dir/plarc.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plarc.c.o -c
/data/home002/pvicente/plplot-plplot/src/plarc.c
[ 26%] Building C object src/CMakeFiles/plplot.dir/plargs.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plargs.c.o -c
/data/home002/pvicente/plplot-plplot/src/plargs.c
[ 30%] Building C object src/CMakeFiles/plplot.dir/plbox.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plbox.c.o -c
/data/home002/pvicente/plplot-plplot/src/plbox.c
[ 30%] Building C object src/CMakeFiles/plplot.dir/plcont.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plcont.c.o -c
/data/home002/pvicente/plplot-plplot/src/plcont.c
[ 34%] Building C object src/CMakeFiles/plplot.dir/plcore.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plcore.c.o -c
/data/home002/pvicente/plplot-plplot/src/plcore.c
[ 34%] Building C object src/CMakeFiles/plplot.dir/plctrl.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plctrl.c.o -c
/data/home002/pvicente/plplot-plplot/src/plctrl.c
[ 34%] Building C object src/CMakeFiles/plplot.dir/plcvt.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plcvt.c.o -c
/data/home002/pvicente/plplot-plplot/src/plcvt.c
[ 38%] Building C object src/CMakeFiles/plplot.dir/pldtik.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/pldtik.c.o -c
/data/home002/pvicente/plplot-plplot/src/pldtik.c
[ 38%] Building C object src/CMakeFiles/plplot.dir/plf2ops.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plf2ops.c.o -c
/data/home002/pvicente/plplot-plplot/src/plf2ops.c
[ 38%] Building C object src/CMakeFiles/plplot.dir/plfill.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plfill.c.o -c
/data/home002/pvicente/plplot-plplot/src/plfill.c
[ 42%] Building C object src/CMakeFiles/plplot.dir/plfreetype.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plfreetype.c.o -c
/data/home002/pvicente/plplot-plplot/src/plfreetype.c
[ 42%] Building C object src/CMakeFiles/plplot.dir/plgradient.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plgradient.c.o -c
/data/home002/pvicente/plplot-plplot/src/plgradient.c
[ 42%] Building C object src/CMakeFiles/plplot.dir/plhist.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plhist.c.o -c
/data/home002/pvicente/plplot-plplot/src/plhist.c
[ 46%] Building C object src/CMakeFiles/plplot.dir/plimage.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plimage.c.o -c
/data/home002/pvicente/plplot-plplot/src/plimage.c
[ 46%] Building C object src/CMakeFiles/plplot.dir/plline.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plline.c.o -c
/data/home002/pvicente/plplot-plplot/src/plline.c
[ 46%] Building C object src/CMakeFiles/plplot.dir/plmetafile.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plmetafile.c.o -c
/data/home002/pvicente/plplot-plplot/src/plmetafile.c
[ 50%] Building C object src/CMakeFiles/plplot.dir/plot3d.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plot3d.c.o -c
/data/home002/pvicente/plplot-plplot/src/plot3d.c
[ 50%] Building C object src/CMakeFiles/plplot.dir/plpage.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plpage.c.o -c
/data/home002/pvicente/plplot-plplot/src/plpage.c
[ 53%] Building C object src/CMakeFiles/plplot.dir/plsdef.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plsdef.c.o -c
/data/home002/pvicente/plplot-plplot/src/plsdef.c
[ 53%] Building C object src/CMakeFiles/plplot.dir/plshade.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plshade.c.o -c
/data/home002/pvicente/plplot-plplot/src/plshade.c
[ 53%] Building C object src/CMakeFiles/plplot.dir/plstdio.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plstdio.c.o -c
/data/home002/pvicente/plplot-plplot/src/plstdio.c
[ 57%] Building C object src/CMakeFiles/plplot.dir/plstripc.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plstripc.c.o -c
/data/home002/pvicente/plplot-plplot/src/plstripc.c
[ 57%] Building C object src/CMakeFiles/plplot.dir/plsym.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plsym.c.o -c
/data/home002/pvicente/plplot-plplot/src/plsym.c
[ 57%] Building C object src/CMakeFiles/plplot.dir/pltick.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/pltick.c.o -c
/data/home002/pvicente/plplot-plplot/src/pltick.c
[ 61%] Building C object src/CMakeFiles/plplot.dir/plvpor.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plvpor.c.o -c
/data/home002/pvicente/plplot-plplot/src/plvpor.c
[ 61%] Building C object src/CMakeFiles/plplot.dir/plwind.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plwind.c.o -c
/data/home002/pvicente/plplot-plplot/src/plwind.c
[ 61%] Building C object src/CMakeFiles/plplot.dir/plbuf.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plbuf.c.o -c
/data/home002/pvicente/plplot-plplot/src/plbuf.c
[ 65%] Building C object src/CMakeFiles/plplot.dir/plgridd.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plgridd.c.o -c
/data/home002/pvicente/plplot-plplot/src/plgridd.c
[ 65%] Building C object src/CMakeFiles/plplot.dir/plvect.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plvect.c.o -c
/data/home002/pvicente/plplot-plplot/src/plvect.c
[ 65%] Building C object src/CMakeFiles/plplot.dir/mt19937ar.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/mt19937ar.c.o -c
/data/home002/pvicente/plplot-plplot/src/mt19937ar.c
[ 69%] Building C object src/CMakeFiles/plplot.dir/pltime.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/pltime.c.o -c
/data/home002/pvicente/plplot-plplot/src/pltime.c
[ 69%] Building C object src/CMakeFiles/plplot.dir/pllegend.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/pllegend.c.o -c
/data/home002/pvicente/plplot-plplot/src/pllegend.c
[ 73%] Building C object src/CMakeFiles/plplot.dir/plmap.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/plmap.c.o -c
/data/home002/pvicente/plplot-plplot/src/plmap.c
[ 73%] Building C object src/CMakeFiles/plplot.dir/__/drivers/cairo.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -pthread
-I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0
-I/usr/lib64/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2
-I/usr/include/libpng12 -I/usr/include -o
CMakeFiles/plplot.dir/__/drivers/cairo.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/cairo.c
[ 73%] Building C object src/CMakeFiles/plplot.dir/__/drivers/mem.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/__/drivers/mem.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/mem.c
[ 76%] Building C object src/CMakeFiles/plplot.dir/__/drivers/null.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/__/drivers/null.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/null.c
[ 76%] Building C object src/CMakeFiles/plplot.dir/__/drivers/ps.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/__/drivers/ps.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/ps.c
[ 76%] Building C object src/CMakeFiles/plplot.dir/__/drivers/svg.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/__/drivers/svg.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/svg.c
[ 80%] Building CXX object src/CMakeFiles/plplot.dir/__/drivers/wxwidgets.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/plplot.dir/__/drivers/wxwidgets.cpp.o -c
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets.cpp
[ 80%] Building CXX object
src/CMakeFiles/plplot.dir/__/drivers/wxwidgets_comms.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/plplot.dir/__/drivers/wxwidgets_comms.cpp.o -c
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_comms.cpp
[ 80%] Building CXX object
src/CMakeFiles/plplot.dir/__/drivers/wxwidgets_dev.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/plplot.dir/__/drivers/wxwidgets_dev.cpp.o -c
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp: In member
function âvoid Font::createFont()â:
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp:683: warning:
âwxFont::wxFont(int, int, int, int, bool, const wxString&, wxFontEncoding)â
is deprecated (declared at
/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1/wx/gtk/font.h:89)
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp: In member
function âvirtual void wxPLDevice::FillPolygon(PLStream*)â:
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp:948: warning:
âwxPen::wxPen(const wxColour&, int, int)â is deprecated (declared at
/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1/wx/gtk/pen.h:51)
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp: In member
function âvirtual void wxPLDevice::SetWidth(PLStream*)â:
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp:983: warning:
âwxPen::wxPen(const wxColour&, int, int)â is deprecated (declared at
/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1/wx/gtk/pen.h:51)
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp: In member
function âvirtual void wxPLDevice::SetColor(PLStream*)â:
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_dev.cpp:996: warning:
âwxPen::wxPen(const wxColour&, int, int)â is deprecated (declared at
/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1/wx/gtk/pen.h:51)
[ 84%] Building C object src/CMakeFiles/plplot.dir/__/drivers/xfig.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplot.dir/__/drivers/xfig.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/xfig.c
[ 84%] Building C object src/CMakeFiles/plplot.dir/__/drivers/xwin.c.o
cd /data/home002/pvicente/plplot-plplot/build/src && /usr/bin/cc
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC
-I/usr/include -o CMakeFiles/plplot.dir/__/drivers/xwin.c.o -c
/data/home002/pvicente/plplot-plplot/drivers/xwin.c
[ 84%] Linking CXX static library libplplot.a
cd /data/home002/pvicente/plplot-plplot/build/src &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -P
CMakeFiles/plplot.dir/cmake_clean_target.cmake
cd /data/home002/pvicente/plplot-plplot/build/src &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/plplot.dir/link.txt --verbose=1
/usr/bin/ar qc libplplot.a CMakeFiles/plplot.dir/pdfutils.c.o
CMakeFiles/plplot.dir/plmem.c.o CMakeFiles/plplot.dir/plaffine.c.o
CMakeFiles/plplot.dir/plarc.c.o CMakeFiles/plplot.dir/plargs.c.o
CMakeFiles/plplot.dir/plbox.c.o CMakeFiles/plplot.dir/plcont.c.o
CMakeFiles/plplot.dir/plcore.c.o CMakeFiles/plplot.dir/plctrl.c.o
CMakeFiles/plplot.dir/plcvt.c.o CMakeFiles/plplot.dir/pldtik.c.o
CMakeFiles/plplot.dir/plf2ops.c.o CMakeFiles/plplot.dir/plfill.c.o
CMakeFiles/plplot.dir/plfreetype.c.o CMakeFiles/plplot.dir/plgradient.c.o
CMakeFiles/plplot.dir/plhist.c.o CMakeFiles/plplot.dir/plimage.c.o
CMakeFiles/plplot.dir/plline.c.o CMakeFiles/plplot.dir/plmetafile.c.o
CMakeFiles/plplot.dir/plot3d.c.o CMakeFiles/plplot.dir/plpage.c.o
CMakeFiles/plplot.dir/plsdef.c.o CMakeFiles/plplot.dir/plshade.c.o
CMakeFiles/plplot.dir/plstdio.c.o CMakeFiles/plplot.dir/plstripc.c.o
CMakeFiles/plplot.dir/plsym.c.o CMakeFiles/plplot.dir/pltick.c.o
CMakeFiles/plplot.dir/plvpor.c.o CMakeFiles/plplot.dir/plwind.c.o
CMakeFiles/plplot.dir/plbuf.c.o CMakeFiles/plplot.dir/plgridd.c.o
CMakeFiles/plplot.dir/plvect.c.o CMakeFiles/plplot.dir/mt19937ar.c.o
CMakeFiles/plplot.dir/pltime.c.o CMakeFiles/plplot.dir/pllegend.c.o
CMakeFiles/plplot.dir/plmap.c.o CMakeFiles/plplot.dir/__/drivers/cairo.c.o
CMakeFiles/plplot.dir/__/drivers/mem.c.o
CMakeFiles/plplot.dir/__/drivers/null.c.o
CMakeFiles/plplot.dir/__/drivers/ps.c.o
CMakeFiles/plplot.dir/__/drivers/svg.c.o
CMakeFiles/plplot.dir/__/drivers/wxwidgets.cpp.o
CMakeFiles/plplot.dir/__/drivers/wxwidgets_comms.cpp.o
CMakeFiles/plplot.dir/__/drivers/wxwidgets_dev.cpp.o
CMakeFiles/plplot.dir/__/drivers/xfig.c.o
CMakeFiles/plplot.dir/__/drivers/xwin.c.o
/usr/bin/ranlib libplplot.a
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 84%] Built target plplot
make -f bindings/c++/CMakeFiles/plplotcxx.dir/build.make
bindings/c++/CMakeFiles/plplotcxx.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/bindings/c++
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/bindings/c++
/data/home002/pvicente/plplot-plplot/build/bindings/c++/CMakeFiles/plplotcxx.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/bindings/c++/CMakeFiles/plplotcxx.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/bindings/c++/CMakeFiles/plplotcxx.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/bindings/c++/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/bindings/c++/CMakeFiles/plplotcxx.dir/depend.internal".
Scanning dependencies of target plplotcxx
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f bindings/c++/CMakeFiles/plplotcxx.dir/build.make
bindings/c++/CMakeFiles/plplotcxx.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 88%] Building CXX object bindings/c++/CMakeFiles/plplotcxx.dir/plstream.cc.o
cd /data/home002/pvicente/plplot-plplot/build/bindings/c++ && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include -g -fPIC -o
CMakeFiles/plplotcxx.dir/plstream.cc.o -c
/data/home002/pvicente/plplot-plplot/bindings/c++/plstream.cc
[ 88%] Linking CXX static library libplplotcxx.a
cd /data/home002/pvicente/plplot-plplot/build/bindings/c++ &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -P
CMakeFiles/plplotcxx.dir/cmake_clean_target.cmake
cd /data/home002/pvicente/plplot-plplot/build/bindings/c++ &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/plplotcxx.dir/link.txt --verbose=1
/usr/bin/ar qc libplplotcxx.a CMakeFiles/plplotcxx.dir/plstream.cc.o
/usr/bin/ranlib libplplotcxx.a
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 88%] Built target plplotcxx
make -f bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/build.make
bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/bindings/wxwidgets
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets
/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/depend.internal".
Scanning dependencies of target plplotwxwidgets
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/build.make
bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 92%] Building CXX object
bindings/wxwidgets/CMakeFiles/plplotwxwidgets.dir/wxPLplotstream.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets &&
/usr/bin/c++ -DPLPLOT_HAVE_CONFIG_H -D_FILE_OFFSET_BITS=64 -D__WXGTK__
-I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/bindings/c++
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include
-I/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1 -g -fPIC
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/plplotwxwidgets.dir/wxPLplotstream.cpp.o -c
/data/home002/pvicente/plplot-plplot/bindings/wxwidgets/wxPLplotstream.cpp
[ 92%] Linking CXX static library libplplotwxwidgets.a
cd /data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -P
CMakeFiles/plplotwxwidgets.dir/cmake_clean_target.cmake
cd /data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/plplotwxwidgets.dir/link.txt --verbose=1
/usr/bin/ar qc libplplotwxwidgets.a
CMakeFiles/plplotwxwidgets.dir/wxPLplotstream.cpp.o
/usr/bin/ranlib libplplotwxwidgets.a
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 92%] Built target plplotwxwidgets
make -f examples/c++/CMakeFiles/wxPLplotDemo.dir/build.make
examples/c++/CMakeFiles/wxPLplotDemo.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/examples/c++
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/examples/c++
/data/home002/pvicente/plplot-plplot/build/examples/c++/CMakeFiles/wxPLplotDemo.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/examples/c++/CMakeFiles/wxPLplotDemo.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/examples/c++/CMakeFiles/wxPLplotDemo.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/examples/c++/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/examples/c++/CMakeFiles/wxPLplotDemo.dir/depend.internal".
Scanning dependencies of target wxPLplotDemo
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f examples/c++/CMakeFiles/wxPLplotDemo.dir/build.make
examples/c++/CMakeFiles/wxPLplotDemo.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 96%] Building CXX object
examples/c++/CMakeFiles/wxPLplotDemo.dir/wxPLplotDemo.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/examples/c++ && /usr/bin/c++
-I/data/home002/pvicente/plplot-plplot/bindings/c++
-I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/build/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/bindings/wxwidgets
-I/data/home002/pvicente/plplot-plplot/build/bindings/wxwidgets -g
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/wxPLplotDemo.dir/wxPLplotDemo.cpp.o -c
/data/home002/pvicente/plplot-plplot/examples/c++/wxPLplotDemo.cpp
[ 96%] Linking CXX executable wxPLplotDemo
cd /data/home002/pvicente/plplot-plplot/build/examples/c++ &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/wxPLplotDemo.dir/link.txt --verbose=1
/usr/bin/c++ -g CMakeFiles/wxPLplotDemo.dir/wxPLplotDemo.cpp.o -o
wxPLplotDemo -rdynamic ../../bindings/wxwidgets/libplplotwxwidgets.a
../../bindings/c++/libplplotcxx.a -pthread
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a -pthread
-lX11 -lXxf86vm -lSM -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0
-lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype
-lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lpng
-ljpeg /data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxregexu-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxtiff-3.1.a -lz -ldl -lm
-llzma -lm ../../src/libplplot.a -pthread -lICE -lXext -lICE -lXext -lpthread
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a -lX11
-lXxf86vm -lSM -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0
-lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig
-lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lpng -ljpeg
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxregexu-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxtiff-3.1.a -lz -ldl
-llzma ../../lib/csa/libcsirocsa.a ../../lib/qsastime/libqsastime.a -lm
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[ 96%] Built target wxPLplotDemo
make -f utils/CMakeFiles/wxPLViewer.dir/build.make
utils/CMakeFiles/wxPLViewer.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/utils
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/utils
/data/home002/pvicente/plplot-plplot/build/utils/CMakeFiles/wxPLViewer.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/utils/CMakeFiles/wxPLViewer.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/utils/CMakeFiles/wxPLViewer.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/utils/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/utils/CMakeFiles/wxPLViewer.dir/depend.internal".
Scanning dependencies of target wxPLViewer
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f utils/CMakeFiles/wxPLViewer.dir/build.make
utils/CMakeFiles/wxPLViewer.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
[ 96%] Building CXX object utils/CMakeFiles/wxPLViewer.dir/wxplviewer.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/utils && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include
-I/data/home002/pvicente/plplot-plplot/bindings/wxwidgets
-I/data/home002/pvicente/plplot-plplot/bindings/c++ -g
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/wxPLViewer.dir/wxplviewer.cpp.o -c
/data/home002/pvicente/plplot-plplot/utils/wxplviewer.cpp
[100%] Building CXX object utils/CMakeFiles/wxPLViewer.dir/wxplframe.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/utils && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include
-I/data/home002/pvicente/plplot-plplot/bindings/wxwidgets
-I/data/home002/pvicente/plplot-plplot/bindings/c++ -g
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/wxPLViewer.dir/wxplframe.cpp.o -c
/data/home002/pvicente/plplot-plplot/utils/wxplframe.cpp
/data/home002/pvicente/plplot-plplot/utils/wxplframe.cpp: In member function
âbool wxPlFrame::ReadTransmission()â:
/data/home002/pvicente/plplot-plplot/utils/wxplframe.cpp:232: warning:
âwxFont* wxFontList::FindOrCreateFont(int, int, int, int, bool, const
wxString&, wxFontEncoding)â is deprecated (declared at
/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1/wx/font.h:549)
[100%] Building CXX object
utils/CMakeFiles/wxPLViewer.dir/__/drivers/wxwidgets_comms.cpp.o
cd /data/home002/pvicente/plplot-plplot/build/utils && /usr/bin/c++
-DPLPLOT_HAVE_CONFIG_H -I/data/home002/pvicente/plplot-plplot/include
-I/data/home002/pvicente/plplot-plplot/lib/qsastime
-I/data/home002/pvicente/plplot-plplot/build
-I/data/home002/pvicente/plplot-plplot/build/include
-I/data/home002/pvicente/plplot-plplot/bindings/wxwidgets
-I/data/home002/pvicente/plplot-plplot/bindings/c++ -g
-I/data/data127/pvicente/install/wxwidgets-3.1.0/lib/wx/include/gtk2-unicode-static-3.1
-I/data/data127/pvicente/install/wxwidgets-3.1.0/include/wx-3.1
-D_FILE_OFFSET_BITS=64 -D__WXGTK__ -o
CMakeFiles/wxPLViewer.dir/__/drivers/wxwidgets_comms.cpp.o -c
/data/home002/pvicente/plplot-plplot/drivers/wxwidgets_comms.cpp
[100%] Linking CXX executable wxPLViewer
cd /data/home002/pvicente/plplot-plplot/build/utils &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_link_script CMakeFiles/wxPLViewer.dir/link.txt --verbose=1
/usr/bin/c++ -g CMakeFiles/wxPLViewer.dir/wxplviewer.cpp.o
CMakeFiles/wxPLViewer.dir/wxplframe.cpp.o
CMakeFiles/wxPLViewer.dir/__/drivers/wxwidgets_comms.cpp.o -o wxPLViewer
-rdynamic ../bindings/wxwidgets/libplplotwxwidgets.a
../bindings/c++/libplplotcxx.a -pthread
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a -pthread
-lX11 -lXxf86vm -lSM -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0
-lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype
-lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lpng
-ljpeg /data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxregexu-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxtiff-3.1.a -lz -ldl -lm
-llzma -lm -lrt ../src/libplplot.a -pthread -lICE -lXext -lICE -lXext -lpthread
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_gtk2u_core-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwx_baseu-3.1.a -lX11
-lXxf86vm -lSM -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0
-lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig
-lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lpng -ljpeg
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxregexu-3.1.a
/data/data127/pvicente/install/wxwidgets-3.1.0/lib/libwxtiff-3.1.a -lz -ldl
-llzma ../lib/csa/libcsirocsa.a ../lib/qsastime/libqsastime.a -lm
-Wl,-rpath,:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
[100%] Built target wxPLViewer
make -f examples/CMakeFiles/test_wxPLplotDemo.dir/build.make
examples/CMakeFiles/test_wxPLplotDemo.dir/depend
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build &&
/data/home002/pvicente/programs/cmake-3.6.2-Linux-x86_64/bin/cmake -E
cmake_depends "Unix Makefiles" /data/home002/pvicente/plplot-plplot
/data/home002/pvicente/plplot-plplot/examples
/data/home002/pvicente/plplot-plplot/build
/data/home002/pvicente/plplot-plplot/build/examples
/data/home002/pvicente/plplot-plplot/build/examples/CMakeFiles/test_wxPLplotDemo.dir/DependInfo.cmake
--color=
Dependee
"/data/home002/pvicente/plplot-plplot/build/examples/CMakeFiles/test_wxPLplotDemo.dir/DependInfo.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/examples/CMakeFiles/test_wxPLplotDemo.dir/depend.internal".
Dependee
"/data/home002/pvicente/plplot-plplot/build/examples/CMakeFiles/CMakeDirectoryInformation.cmake"
is newer than depender
"/data/home002/pvicente/plplot-plplot/build/examples/CMakeFiles/test_wxPLplotDemo.dir/depend.internal".
Scanning dependencies of target test_wxPLplotDemo
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make -f examples/CMakeFiles/test_wxPLplotDemo.dir/build.make
examples/CMakeFiles/test_wxPLplotDemo.dir/build
make[3]: Entering directory `/data/home002/pvicente/plplot-plplot/build'
cd /data/home002/pvicente/plplot-plplot/build/examples && c++/wxPLplotDemo
wxPLplotDemo:
/data/home002/pvicente/plplot-plplot/examples/c++/wxPLplotDemo.cpp:160: void
Plot(wxPLplotwindow<WXWINDOW>*) [with WXWINDOW = wxFrame]: Assertion `pls'
failed.
/bin/sh: line 1: 20292 Aborted c++/wxPLplotDemo
make[3]: *** [examples/CMakeFiles/test_wxPLplotDemo] Error 134
make[3]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make[2]: *** [examples/CMakeFiles/test_wxPLplotDemo.dir/all] Error 2
make[2]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make[1]: *** [examples/CMakeFiles/test_wxPLplotDemo.dir/rule] Error 2
make[1]: Leaving directory `/data/home002/pvicente/plplot-plplot/build'
make: *** [test_wxPLplotDemo] Error 2
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel