diff --git a/.gitignore b/.gitignore index ad96580..0343d10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Temporary editor files # ########################## *~ +*- # AFS temporary files # ####################### @@ -35,6 +36,10 @@ src/*.lo src/*.la src/.deps/* src/bitshuffle/.deps/* +src/bitshuffle/.libs/* +src/bitshuffle/*.o +src/bitshuffle/*.Plo +src/bitshuffle/*.lo src/.libs/* examples/cafeTest/*.*- doc diff --git a/README b/README index 06867e5..f9fb268 100644 --- a/README +++ b/README @@ -1,18 +1,25 @@ ## -autogen_rel_py3.sh ==> generates library for use from within python and C++ -autogen_rel_py3_noqt.sh ==> generates library for use from within python and C++ (remove Qt4 dependency if xml not required) -autogen_rel_noqt.sh ==> generates library for building a mex file (remove Qt4 dependence as matlab requires Qt5) -autogen_rel.sh ==> normal c++ release +Change cafe version in three place: +1) +configure.ac +AC_INIT([CAFE], [1.22.0], [Bug reports to: felix.armborst@psi.ch, j.chrin@hispeed.ch]) + +2) +src/makefile.am +libcafe_la_LDFLAGS = -version-info 23:0:22 #corresponds to 1.22.0 (run cafe_version.py) + +3) +autogen.sh +CAFE_V="cafe-1.22.0" +EPICS_BASE='base-7.0.9' #change epics version here + + +autogen.sh sls2 py310/py38/py37 ==> generates library for use from within python and C++ +autogen.sh sls2 cpp ==> generates library for use in cpp +autogen.sh sls2 matlab ==> generates library for building a mex file +autogen.sh hipa cpp ==> generates library for use cpp **without** qt libraries +autogen.sh sf py37 ==> generates library for use use in swissfel with bsread/zmq capabilty -Libraries are only made available when the appropriate is enabld -#ENABLE_OPTIONS+=" --enable-qt5" -##ENABLE_OPTIONS+=" --enable-qt4" -#ENABLE_OPTIONS+=" --enable-python37" -##ENABLE_OPTIONS+=" --enable-python35" -#ENABLE_OPTIONS+=" --enable-json" -#ENABLE_OPTIONS+=" --enable-zeromq" -#ENABLE_OPTIONS+=" --enable-curl" -#ENABLE_OPTIONS+=" --enable-lz4" ## ## -------------------------------------------------------------------------- @@ -23,17 +30,6 @@ Libraries are only made available when the appropriate is enabld ## ## --libdir: This is the directory to which the cafe shared objects are ## installed - -## --with-boost: base directory for the boost header files -## --with-epics7: epics7 top level directory -## --with-epics3: epics3 top level directory -## Note that configure.ac assume that the architecture is -## base/lib/${EPICS_HOST_ARCH} - -## --with-qt5: Qt5 base directory (optional) -## --with-python37: Python 3.7 directory, if building PyCafe -## --with-python35: Python 3.5 directory, if bulding PyCafe -## Remaining libraries are specific to swissfel zmq streams ## -------------------------------------------------------------------------- 1) Modify autogen.sh according to above diff --git a/autogen_sfbd.sh b/autogen_sfbd.sh index 91de740..86702d6 100644 --- a/autogen_sfbd.sh +++ b/autogen_sfbd.sh @@ -3,8 +3,9 @@ # default is sf # module unload gcc -#module load gcc/7.3.0 #7.5.0 for py38 py310 7.3.0 py37 +module load gcc/7.3.0 #7.5.0 for py38 py310 7.3.0 py37 #module load gcc/10.4.0 ##rhel8 +#module load gcc/4.7.4 #for py35 ### psi specific - end rm -f configure.ac diff --git a/cafe_version.py b/cafe_version.py new file mode 100644 index 0000000..e396713 --- /dev/null +++ b/cafe_version.py @@ -0,0 +1,24 @@ +# Converts cafe 'major' 'minor' 'revision' +# to syntax for use in libcafe_la_LDFLAGS +# in src/makefile.am +# +import sys + +if (len(sys.argv) != 4): + print('Usage: cafe_version_py major minor revision') + print('Usage: e.g. cafe_version.py 1.22.0 returns 23:0:22') + sys.exit() + +print(f'input args: {sys.argv}') +print('Change the following in src/makefile.am') +major = int(sys.argv[1]) +minor = int(sys.argv[2]) +rev = int(sys.argv[3]) + + +current = major+minor +revision = rev +age = minor + + +print(f'libcafe_la_LDFLAGS = -version-info {current}:{revision}:{age}') diff --git a/config.log b/config.log index 41755c2..7255dd7 100644 --- a/config.log +++ b/config.log @@ -4,17 +4,17 @@ running configure, to aid debugging if configure makes a mistake. It was created by CAFE configure 1.22.0, which was generated by GNU Autoconf 2.69. Invocation command line was - $ ./configure --prefix=/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- --libdir=/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64 --enable-boost-inc --enable-epics7 --enable-python37 --enable-qt5 --with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include --with-epics3=/usr/local/epics/base --with-python310=/opt/gfa/python-3.10/latest --with-python38=/opt/gfa/python-3.8/latest --with-python37=/opt/gfa/python-3.7/latest --with-python35=/opt/gfa/python-3.5/latest --with-python34=/opt/psi/Programming/psi-python34/2.1.0 --with-qt5py310=/opt/gfa/python-3.10/latest --with-qt5py38=/opt/gfa/python-3.8/latest --with-qt5=/opt/gfa/python-3.7/latest --with-qt4=/opt/gfa/python-3.5/latest --with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0 --with-json=/opt/gfa/cafe/deps/zmq/json/jsoncpp-src-0.6.0-rc2 --with-zeromq=/opt/gfa/cafe/deps/zmq/zeromq-4.2.3-gcc-6.3.0 --with-curl=/opt/gfa/cafe/deps/zmq/curl-7.55.1 --with-lz4=/opt/gfa/cafe/deps/zmq/lz4/lib --with-epics7=/usr/local/epics/base-7.0.9 --no-create --no-recursion + $ ./configure --prefix=/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0 --libdir=/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64 --enable-boost-inc --enable-epics7 --enable-python35 --enable-qt4 --with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include --with-epics3=/usr/local/epics/base --with-python310=/opt/gfa/python-3.10/latest --with-python38=/opt/gfa/python-3.8/latest --with-python37=/opt/gfa/python-3.7/latest --with-python35=/opt/gfa/python-3.5/latest --with-python34=/opt/psi/Programming/psi-python34/2.1.0 --with-qt5py310=/opt/gfa/python-3.10/latest --with-qt5py38=/opt/gfa/python-3.8/latest --with-qt5=/opt/gfa/python-3.7/latest --with-qt4=/opt/gfa/python-3.5/latest --with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0 --with-json=/opt/gfa/cafe/deps/zmq/json/jsoncpp-src-0.6.0-rc2 --with-zeromq=/opt/gfa/cafe/deps/zmq/zeromq-4.2.3-gcc-6.3.0 --with-curl=/opt/gfa/cafe/deps/zmq/curl-7.55.1 --with-lz4=/opt/gfa/cafe/deps/zmq/lz4/lib --with-epics7=/usr/local/epics/base-7.0.9 ## --------- ## ## Platform. ## ## --------- ## -hostname = sls-lc8.psi.ch +hostname = pc13470.psi.ch uname -m = x86_64 -uname -r = 4.18.0-553.22.1.el8_10.x86_64 +uname -r = 4.18.0-513.11.1.el8_9.x86_64 uname -s = Linux -uname -v = #1 SMP Wed Sep 11 18:02:00 EDT 2024 +uname -v = #1 SMP Thu Dec 7 03:06:13 EST 2023 /usr/bin/uname -p = x86_64 /bin/uname -X = unknown @@ -27,37 +27,32 @@ uname -v = #1 SMP Wed Sep 11 18:02:00 EDT 2024 /usr/bin/oslevel = unknown /bin/universe = unknown -PATH: /opt/gfa/python-3.7/2018.12/bin +PATH: /opt/psi/Programming/gcc/7.3.0/bin PATH: /opt/gfa/python-3.5/latest/bin PATH: /usr/local/epics/seq/bin/RHEL8-x86_64 -PATH: . +PATH: /usr/lib/openoffice.org/program +PATH: /usr/local/epics/seq/bin/RHEL8-x86_64 PATH: /usr/lib/openoffice.org/program PATH: /opt/psi/Tools/HDFView/3.1.2/bin PATH: /usr/share/Modules/bin -PATH: /sbin -PATH: /bin -PATH: /sls/bd/bin -PATH: /sls/controls/bin -PATH: /sls/diag/bin -PATH: /sls/mag/bin -PATH: /sls/metro/bin -PATH: /sls/op/bin -PATH: /sls/plc -PATH: /sls/rf/bin -PATH: /sls/vcs/bin PATH: /usr/local/bin -PATH: /usr/bin PATH: /usr/local/sbin +PATH: /usr/bin PATH: /usr/sbin -PATH: /usr/local/epics/base-7.0.9/bin/RHEL8-x86_64 -PATH: /sls/bd/bin -PATH: /sls/controls/bin +PATH: /sf/controls/bin +PATH: /sf/diag/bin +PATH: /sf/bd/bin PATH: /opt/puppetlabs/bin PATH: /afs/psi.ch/project/zeromq/deps/pycharm-community-2018.1.4/bin PATH: /afs/psi.ch/user/c/chrin/Downloads/astyle/build/gcc/bin PATH: /afs/psi.ch/user/c/chrin/.local/bin PATH: /afs/psi.ch/user/c/chrin/python/pycharm-community-2018.1.4/bin PATH: /afs/psi.ch/user/c/chrin/bin +PATH: /usr/local/epics/base-7.0.9/bin/RHEL8-x86_64 +PATH: /afs/psi.ch/project/zeromq/deps/pycharm-community-2018.1.4/bin +PATH: /afs/psi.ch/user/c/chrin/Downloads/astyle/build/gcc/bin +PATH: /afs/psi.ch/user/c/chrin/.local/bin +PATH: /afs/psi.ch/user/c/chrin/python/pycharm-community-2018.1.4/bin ## ----------- ## @@ -65,86 +60,79 @@ PATH: /afs/psi.ch/user/c/chrin/bin ## ----------- ## configure:2503: checking for a BSD-compatible install -configure:2571: result: /bin/install -c +configure:2571: result: /usr/bin/install -c configure:2582: checking whether build environment is sane configure:2637: result: yes configure:2788: checking for a thread-safe mkdir -p -configure:2827: result: /bin/mkdir -p +configure:2827: result: /usr/bin/mkdir -p configure:2834: checking for gawk -configure:2850: found /bin/gawk +configure:2850: found /usr/bin/gawk configure:2861: result: gawk configure:2872: checking whether make sets $(MAKE) configure:2894: result: yes configure:2923: checking whether make supports nested variables configure:2940: result: yes -configure:3135: checking for g++ -configure:3151: found /bin/g++ -configure:3162: result: g++ configure:3189: checking for C++ compiler version -configure:3198: g++ --version >&5 -g++ (GCC) 8.5.0 20210514 (Red Hat 8.5.0-28) -Copyright (C) 2018 Free Software Foundation, Inc. +configure:3198: /opt/psi/Programming/gcc/7.3.0/bin/g++ --version >&5 +g++ ('PSI Environment Module') 7.3.0 +Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3209: $? = 0 -configure:3198: g++ -v >&5 +configure:3198: /opt/psi/Programming/gcc/7.3.0/bin/g++ -v >&5 Using built-in specs. -COLLECT_GCC=g++ -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-redhat-linux -Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux +COLLECT_GCC=/opt/psi/Programming/gcc/7.3.0/bin/g++ +COLLECT_LTO_WRAPPER=/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../libexec/gcc/x86_64-pc-linux-gnu/7.3.0/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /opt/tmp/stadler_h/src/gcc-7.3.0/configure --prefix=/opt/psi/Programming/gcc/7.3.0 --enable-languages=c,c++,objc,obj-c++,lto,fortran --with-gmp=/opt/psi/Libraries/gmp/6.1.2 --with-mpfr=/opt/psi/Libraries/mpfr/4.0.0 --with-mpc=/opt/psi/Libraries/mpc/1.1.0 --enable-lto --disable-multilib --with-build-config=bootstrap-debug --with-pkgversion=''\''PSI Environment Module'\''' --with-build-config=bootstrap-debug Thread model: posix -gcc version 8.5.0 20210514 (Red Hat 8.5.0-28) (GCC) +gcc version 7.3.0 ('PSI Environment Module') configure:3209: $? = 0 -configure:3198: g++ -V >&5 +configure:3198: /opt/psi/Programming/gcc/7.3.0/bin/g++ -V >&5 g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. configure:3209: $? = 1 -configure:3198: g++ -qversion >&5 +configure:3198: /opt/psi/Programming/gcc/7.3.0/bin/g++ -qversion >&5 g++: error: unrecognized command line option '-qversion'; did you mean '--version'? g++: fatal error: no input files compilation terminated. configure:3209: $? = 1 configure:3229: checking whether the C++ compiler works -configure:3251: g++ conftest.cpp >&5 +configure:3251: /opt/psi/Programming/gcc/7.3.0/bin/g++ conftest.cpp >&5 configure:3255: $? = 0 configure:3303: result: yes configure:3306: checking for C++ compiler default output file name configure:3308: result: a.out configure:3314: checking for suffix of executables -configure:3321: g++ -o conftest conftest.cpp >&5 +configure:3321: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest conftest.cpp >&5 configure:3325: $? = 0 configure:3347: result: configure:3369: checking whether we are cross compiling -configure:3377: g++ -o conftest conftest.cpp >&5 +configure:3377: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest conftest.cpp >&5 configure:3381: $? = 0 configure:3388: ./conftest configure:3392: $? = 0 configure:3407: result: no configure:3412: checking for suffix of object files -configure:3434: g++ -c conftest.cpp >&5 +configure:3434: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c conftest.cpp >&5 configure:3438: $? = 0 configure:3459: result: o configure:3463: checking whether we are using the GNU C++ compiler -configure:3482: g++ -c conftest.cpp >&5 +configure:3482: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c conftest.cpp >&5 configure:3482: $? = 0 configure:3491: result: yes -configure:3500: checking whether g++ accepts -g -configure:3520: g++ -c -g conftest.cpp >&5 +configure:3500: checking whether /opt/psi/Programming/gcc/7.3.0/bin/g++ accepts -g +configure:3520: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g conftest.cpp >&5 configure:3520: $? = 0 configure:3561: result: yes configure:3587: checking whether make supports the include directive configure:3602: make -f confmf.GNU && cat confinc.out -make[1]: Entering directory '/afs/psi.ch/project/cafe/gitea/CAFE/cpp' -make[1]: Leaving directory '/afs/psi.ch/project/cafe/gitea/CAFE/cpp' this is the am__doit target configure:3605: $? = 0 configure:3624: result: yes (GNU style) -configure:3649: checking dependency style of g++ +configure:3649: checking dependency style of /opt/psi/Programming/gcc/7.3.0/bin/g++ configure:3760: result: gcc3 configure:3806: checking build system type configure:3820: result: x86_64-pc-linux-gnu @@ -153,74 +141,71 @@ configure:3853: result: x86_64-pc-linux-gnu configure:3894: checking how to print strings configure:3921: result: printf configure:3990: checking for gcc -configure:4006: found /bin/gcc -configure:4017: result: gcc +configure:4017: result: /opt/psi/Programming/gcc/7.3.0/bin/gcc configure:4246: checking for C compiler version -configure:4255: gcc --version >&5 -gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-28) -Copyright (C) 2018 Free Software Foundation, Inc. +configure:4255: /opt/psi/Programming/gcc/7.3.0/bin/gcc --version >&5 +gcc ('PSI Environment Module') 7.3.0 +Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4266: $? = 0 -configure:4255: gcc -v >&5 +configure:4255: /opt/psi/Programming/gcc/7.3.0/bin/gcc -v >&5 Using built-in specs. -COLLECT_GCC=gcc -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-redhat-linux -Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux +COLLECT_GCC=/opt/psi/Programming/gcc/7.3.0/bin/gcc +COLLECT_LTO_WRAPPER=/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../libexec/gcc/x86_64-pc-linux-gnu/7.3.0/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /opt/tmp/stadler_h/src/gcc-7.3.0/configure --prefix=/opt/psi/Programming/gcc/7.3.0 --enable-languages=c,c++,objc,obj-c++,lto,fortran --with-gmp=/opt/psi/Libraries/gmp/6.1.2 --with-mpfr=/opt/psi/Libraries/mpfr/4.0.0 --with-mpc=/opt/psi/Libraries/mpc/1.1.0 --enable-lto --disable-multilib --with-build-config=bootstrap-debug --with-pkgversion=''\''PSI Environment Module'\''' --with-build-config=bootstrap-debug Thread model: posix -gcc version 8.5.0 20210514 (Red Hat 8.5.0-28) (GCC) +gcc version 7.3.0 ('PSI Environment Module') configure:4266: $? = 0 -configure:4255: gcc -V >&5 +configure:4255: /opt/psi/Programming/gcc/7.3.0/bin/gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:4266: $? = 1 -configure:4255: gcc -qversion >&5 +configure:4255: /opt/psi/Programming/gcc/7.3.0/bin/gcc -qversion >&5 gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? gcc: fatal error: no input files compilation terminated. configure:4266: $? = 1 configure:4270: checking whether we are using the GNU C compiler -configure:4289: gcc -c conftest.c >&5 +configure:4289: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c conftest.c >&5 configure:4289: $? = 0 configure:4298: result: yes -configure:4307: checking whether gcc accepts -g -configure:4327: gcc -c -g conftest.c >&5 +configure:4307: checking whether /opt/psi/Programming/gcc/7.3.0/bin/gcc accepts -g +configure:4327: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g conftest.c >&5 configure:4327: $? = 0 configure:4368: result: yes -configure:4385: checking for gcc option to accept ISO C89 -configure:4448: gcc -c -g -O2 conftest.c >&5 +configure:4385: checking for /opt/psi/Programming/gcc/7.3.0/bin/gcc option to accept ISO C89 +configure:4448: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:4448: $? = 0 configure:4461: result: none needed -configure:4486: checking whether gcc understands -c and -o together -configure:4508: gcc -c conftest.c -o conftest2.o +configure:4486: checking whether /opt/psi/Programming/gcc/7.3.0/bin/gcc understands -c and -o together +configure:4508: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c conftest.c -o conftest2.o configure:4511: $? = 0 -configure:4508: gcc -c conftest.c -o conftest2.o +configure:4508: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c conftest.c -o conftest2.o configure:4511: $? = 0 configure:4523: result: yes -configure:4542: checking dependency style of gcc +configure:4542: checking dependency style of /opt/psi/Programming/gcc/7.3.0/bin/gcc configure:4653: result: gcc3 configure:4668: checking for a sed that does not truncate output -configure:4732: result: /bin/sed +configure:4732: result: /usr/bin/sed configure:4750: checking for grep that handles long lines and -e -configure:4808: result: /bin/grep +configure:4808: result: /usr/bin/grep configure:4813: checking for egrep -configure:4875: result: /bin/grep -E +configure:4875: result: /usr/bin/grep -E configure:4880: checking for fgrep -configure:4942: result: /bin/grep -F -configure:4977: checking for ld used by gcc -configure:5044: result: /bin/ld -configure:5051: checking if the linker (/bin/ld) is GNU ld +configure:4942: result: /usr/bin/grep -F +configure:4977: checking for ld used by /opt/psi/Programming/gcc/7.3.0/bin/gcc +configure:5044: result: /usr/bin/ld +configure:5051: checking if the linker (/usr/bin/ld) is GNU ld configure:5066: result: yes configure:5078: checking for BSD- or MS-compatible name lister (nm) -configure:5132: result: /bin/nm -B -configure:5262: checking the name lister (/bin/nm -B) interface -configure:5269: g++ -c -g -O2 conftest.cpp >&5 -configure:5272: /bin/nm -B "conftest.o" +configure:5132: result: /usr/bin/nm -B +configure:5262: checking the name lister (/usr/bin/nm -B) interface +configure:5269: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 conftest.cpp >&5 +configure:5272: /usr/bin/nm -B "conftest.o" configure:5275: output 0000000000000000 B some_variable configure:5282: result: BSD nm @@ -232,10 +217,10 @@ configure:5476: checking how to convert x86_64-pc-linux-gnu file names to x86_64 configure:5516: result: func_convert_file_noop configure:5523: checking how to convert x86_64-pc-linux-gnu file names to toolchain format configure:5543: result: func_convert_file_noop -configure:5550: checking for /bin/ld option to reload object files +configure:5550: checking for /usr/bin/ld option to reload object files configure:5557: result: -r configure:5631: checking for objdump -configure:5647: found /bin/objdump +configure:5647: found /usr/bin/objdump configure:5658: result: objdump configure:5690: checking how to recognize dependent libraries configure:5890: result: pass_all @@ -244,10 +229,10 @@ configure:6005: result: no configure:6035: checking how to associate runtime and link libraries configure:6062: result: printf %s\n configure:6123: checking for ar -configure:6139: found /bin/ar +configure:6139: found /usr/bin/ar configure:6150: result: ar configure:6187: checking for archiver @FILE support -configure:6204: g++ -c -g -O2 conftest.cpp >&5 +configure:6204: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 conftest.cpp >&5 configure:6204: $? = 0 configure:6207: ar cru libconftest.a @conftest.lst >&5 configure:6210: $? = 0 @@ -256,26 +241,26 @@ ar: conftest.o: No such file or directory configure:6218: $? = 1 configure:6230: result: @ configure:6288: checking for strip -configure:6304: found /bin/strip +configure:6304: found /usr/bin/strip configure:6315: result: strip configure:6387: checking for ranlib -configure:6403: found /bin/ranlib +configure:6403: found /usr/bin/ranlib configure:6414: result: ranlib -configure:6516: checking command to parse /bin/nm -B output from gcc object -configure:6669: g++ -c -g -O2 conftest.cpp >&5 +configure:6516: checking command to parse /usr/bin/nm -B output from /opt/psi/Programming/gcc/7.3.0/bin/gcc object +configure:6669: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 conftest.cpp >&5 configure:6672: $? = 0 -configure:6676: /bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm +configure:6676: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:6679: $? = 0 -configure:6745: g++ -o conftest -g -O2 conftest.cpp conftstm.o >&5 +configure:6745: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 conftest.cpp conftstm.o >&5 configure:6748: $? = 0 configure:6786: result: ok configure:6833: checking for sysroot configure:6863: result: no configure:6870: checking for a working dd -configure:6908: result: /bin/dd +configure:6908: result: /usr/bin/dd configure:6912: checking how to truncate binary pipes -configure:6927: result: /bin/dd bs=4096 count=1 -configure:7064: g++ -c -g -O2 conftest.cpp >&5 +configure:6927: result: /usr/bin/dd bs=4096 count=1 +configure:7064: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 conftest.cpp >&5 configure:7067: $? = 0 configure:7257: checking for mt configure:7287: result: no @@ -283,9 +268,9 @@ configure:7307: checking if : is a manifest tool configure:7313: : '-?' configure:7321: result: no configure:7998: checking how to run the C preprocessor -configure:8029: gcc -E conftest.c +configure:8029: /opt/psi/Programming/gcc/7.3.0/bin/gcc -E conftest.c configure:8029: $? = 0 -configure:8043: gcc -E conftest.c +configure:8043: /opt/psi/Programming/gcc/7.3.0/bin/gcc -E conftest.c conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory #include ^~~~~~~~~~~~~~~~~~ @@ -303,10 +288,10 @@ configure: failed program was: | #define VERSION "1.22.0" | /* end confdefs.h. */ | #include -configure:8068: result: gcc -E -configure:8088: gcc -E conftest.c +configure:8068: result: /opt/psi/Programming/gcc/7.3.0/bin/gcc -E +configure:8088: /opt/psi/Programming/gcc/7.3.0/bin/gcc -E conftest.c configure:8088: $? = 0 -configure:8102: gcc -E conftest.c +configure:8102: /opt/psi/Programming/gcc/7.3.0/bin/gcc -E conftest.c conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory #include ^~~~~~~~~~~~~~~~~~ @@ -325,105 +310,105 @@ configure: failed program was: | /* end confdefs.h. */ | #include configure:8131: checking for ANSI C header files -configure:8151: gcc -c -g -O2 conftest.c >&5 +configure:8151: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8151: $? = 0 -configure:8224: gcc -o conftest -g -O2 conftest.c >&5 +configure:8224: /opt/psi/Programming/gcc/7.3.0/bin/gcc -o conftest -g -O2 conftest.c >&5 configure:8224: $? = 0 configure:8224: ./conftest configure:8224: $? = 0 configure:8235: result: yes configure:8248: checking for sys/types.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for sys/stat.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for stdlib.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for string.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for memory.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for strings.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for inttypes.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for stdint.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for unistd.h -configure:8248: gcc -c -g -O2 conftest.c >&5 +configure:8248: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8262: checking for dlfcn.h -configure:8262: gcc -c -g -O2 conftest.c >&5 +configure:8262: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:8262: $? = 0 configure:8262: result: yes configure:8528: checking for objdir configure:8543: result: .libs -configure:8807: checking if gcc supports -fno-rtti -fno-exceptions -configure:8825: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 +configure:8807: checking if /opt/psi/Programming/gcc/7.3.0/bin/gcc supports -fno-rtti -fno-exceptions +configure:8825: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C configure:8829: $? = 0 configure:8842: result: no -configure:9200: checking for gcc option to produce PIC +configure:9200: checking for /opt/psi/Programming/gcc/7.3.0/bin/gcc option to produce PIC configure:9207: result: -fPIC -DPIC -configure:9215: checking if gcc PIC flag -fPIC -DPIC works -configure:9233: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 +configure:9215: checking if /opt/psi/Programming/gcc/7.3.0/bin/gcc PIC flag -fPIC -DPIC works +configure:9233: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:9237: $? = 0 configure:9250: result: yes -configure:9279: checking if gcc static flag -static works +configure:9279: checking if /opt/psi/Programming/gcc/7.3.0/bin/gcc static flag -static works configure:9307: result: no -configure:9322: checking if gcc supports -c -o file.o -configure:9343: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 +configure:9322: checking if /opt/psi/Programming/gcc/7.3.0/bin/gcc supports -c -o file.o +configure:9343: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:9347: $? = 0 configure:9369: result: yes -configure:9377: checking if gcc supports -c -o file.o +configure:9377: checking if /opt/psi/Programming/gcc/7.3.0/bin/gcc supports -c -o file.o configure:9424: result: yes -configure:9457: checking whether the gcc linker (/bin/ld -m elf_x86_64) supports shared libraries +configure:9457: checking whether the /opt/psi/Programming/gcc/7.3.0/bin/gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:10716: result: yes configure:10753: checking whether -lc should be explicitly linked in -configure:10761: gcc -c -g -O2 conftest.c >&5 +configure:10761: /opt/psi/Programming/gcc/7.3.0/bin/gcc -c -g -O2 conftest.c >&5 configure:10764: $? = 0 -configure:10779: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 +configure:10779: /opt/psi/Programming/gcc/7.3.0/bin/gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 configure:10782: $? = 0 configure:10796: result: no configure:10956: checking dynamic linker characteristics -configure:11537: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 +configure:11537: /opt/psi/Programming/gcc/7.3.0/bin/gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:11537: $? = 0 -configure:11774: result: GNU/Linux ld.so -configure:11896: checking how to hardcode library paths into programs -configure:11921: result: immediate -configure:12469: checking whether stripping libraries is possible -configure:12474: result: yes -configure:12509: checking if libtool supports shared libraries -configure:12511: result: yes -configure:12514: checking whether to build shared libraries -configure:12539: result: yes -configure:12542: checking whether to build static libraries -configure:12546: result: yes -configure:12569: checking how to run the C++ preprocessor -configure:12596: g++ -E conftest.cpp -configure:12596: $? = 0 -configure:12610: g++ -E conftest.cpp +configure:11777: result: GNU/Linux ld.so +configure:11899: checking how to hardcode library paths into programs +configure:11924: result: immediate +configure:12472: checking whether stripping libraries is possible +configure:12477: result: yes +configure:12512: checking if libtool supports shared libraries +configure:12514: result: yes +configure:12517: checking whether to build shared libraries +configure:12542: result: yes +configure:12545: checking whether to build static libraries +configure:12549: result: yes +configure:12572: checking how to run the C++ preprocessor +configure:12599: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E conftest.cpp +configure:12599: $? = 0 +configure:12613: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E conftest.cpp conftest.cpp:23:10: fatal error: ac_nonexistent.h: No such file or directory #include ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:12610: $? = 1 +configure:12613: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "CAFE" @@ -448,15 +433,15 @@ configure: failed program was: | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include -configure:12635: result: g++ -E -configure:12655: g++ -E conftest.cpp -configure:12655: $? = 0 -configure:12669: g++ -E conftest.cpp +configure:12638: result: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E +configure:12658: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E conftest.cpp +configure:12658: $? = 0 +configure:12672: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E conftest.cpp conftest.cpp:23:10: fatal error: ac_nonexistent.h: No such file or directory #include ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:12669: $? = 1 +configure:12672: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "CAFE" @@ -481,117 +466,326 @@ configure: failed program was: | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include -configure:12831: checking for ld used by g++ -configure:12898: result: /bin/ld -m elf_x86_64 -configure:12905: checking if the linker (/bin/ld -m elf_x86_64) is GNU ld -configure:12920: result: yes -configure:12975: checking whether the g++ linker (/bin/ld -m elf_x86_64) supports shared libraries -configure:14048: result: yes -configure:14084: g++ -c -g -O2 conftest.cpp >&5 -configure:14087: $? = 0 -configure:14568: checking for g++ option to produce PIC -configure:14575: result: -fPIC -DPIC -configure:14583: checking if g++ PIC flag -fPIC -DPIC works -configure:14601: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 -configure:14605: $? = 0 -configure:14618: result: yes -configure:14641: checking if g++ static flag -static works -configure:14669: result: no -configure:14681: checking if g++ supports -c -o file.o -configure:14702: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 -configure:14706: $? = 0 -configure:14728: result: yes -configure:14733: checking if g++ supports -c -o file.o -configure:14780: result: yes -configure:14810: checking whether the g++ linker (/bin/ld -m elf_x86_64) supports shared libraries -configure:14850: result: yes -configure:14991: checking dynamic linker characteristics -configure:15736: result: GNU/Linux ld.so -configure:15801: checking how to hardcode library paths into programs -configure:15826: result: immediate -configure:16051: checking cadef.h usability -configure:16051: g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp >&5 -configure:16051: $? = 0 -configure:16051: result: yes -configure:16051: checking cadef.h presence -configure:16051: g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp -configure:16051: $? = 0 -configure:16051: result: yes -configure:16051: checking for cadef.h -configure:16051: result: yes -configure:16070: checking epicsTypes.h usability -configure:16070: g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp >&5 -configure:16070: $? = 0 -configure:16070: result: yes -configure:16070: checking epicsTypes.h presence -configure:16070: g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp -configure:16070: $? = 0 -configure:16070: result: yes -configure:16070: checking for epicsTypes.h -configure:16070: result: yes -configure:16087: checking for main in -lca -configure:16106: g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 conftest.cpp -lca >&5 -/bin/ld: warning: -z nodefs ignored. -configure:16106: $? = 0 -configure:16115: result: yes -configure:16128: checking for main in -lCom -configure:16147: g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 conftest.cpp -lCom >&5 -/bin/ld: warning: -z nodefs ignored. -configure:16147: $? = 0 -configure:16156: result: yes -configure:16169: checking for main in -ldl -configure:16188: g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 conftest.cpp -ldl >&5 -/bin/ld: warning: -z nodefs ignored. -configure:16188: $? = 0 -configure:16197: result: yes -configure:16402: checking multi_index_container.hpp usability -configure:16402: g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include conftest.cpp >&5 -configure:16402: $? = 0 -configure:16402: result: yes -configure:16402: checking multi_index_container.hpp presence -configure:16402: g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include conftest.cpp -configure:16402: $? = 0 -configure:16402: result: yes -configure:16402: checking for multi_index_container.hpp -configure:16402: result: yes -configure:16626: checking Python.h usability -configure:16626: g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include conftest.cpp >&5 -configure:16626: $? = 0 -configure:16626: result: yes -configure:16626: checking Python.h presence -configure:16626: g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include conftest.cpp -configure:16626: $? = 0 -configure:16626: result: yes -configure:16626: checking for Python.h -configure:16626: result: yes -configure:16741: checking for main in -lpython3.7m -configure:16760: g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib conftest.cpp -lpython3.7m >&5 -/bin/ld: warning: -z nodefs ignored. -configure:16760: $? = 0 -configure:16769: result: yes -configure:17116: checking qxml.h usability -configure:17116: g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml conftest.cpp >&5 -configure:17116: $? = 0 -configure:17116: result: yes -configure:17116: checking qxml.h presence -configure:17116: g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml conftest.cpp -configure:17116: $? = 0 -configure:17116: result: yes -configure:17116: checking for qxml.h -configure:17116: result: yes -configure:17226: checking for write in -lQt5Core -configure:17251: g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib conftest.cpp -lQt5Core -lpython3.7m >&5 -/bin/ld: warning: -z nodefs ignored. -configure:17251: $? = 0 -configure:17260: result: yes -configure:17278: checking for qt_version_tag in -lQt5Xml -configure:17303: g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib conftest.cpp -lQt5Xml -lQt5Core -lpython3.7m >&5 -/bin/ld: warning: -z nodefs ignored. -configure:17303: $? = 0 -configure:17312: result: yes -configure:18163: checking that generated files are newer than configure -configure:18169: result: done -configure:18208: creating ./config.status +configure:12834: checking for ld used by /opt/psi/Programming/gcc/7.3.0/bin/g++ +configure:12901: result: /usr/bin/ld -m elf_x86_64 +configure:12908: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld +configure:12923: result: yes +configure:12978: checking whether the /opt/psi/Programming/gcc/7.3.0/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:14051: result: yes +configure:14087: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 conftest.cpp >&5 +configure:14090: $? = 0 +configure:14571: checking for /opt/psi/Programming/gcc/7.3.0/bin/g++ option to produce PIC +configure:14578: result: -fPIC -DPIC +configure:14586: checking if /opt/psi/Programming/gcc/7.3.0/bin/g++ PIC flag -fPIC -DPIC works +configure:14604: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 +configure:14608: $? = 0 +configure:14621: result: yes +configure:14644: checking if /opt/psi/Programming/gcc/7.3.0/bin/g++ static flag -static works +configure:14672: result: no +configure:14684: checking if /opt/psi/Programming/gcc/7.3.0/bin/g++ supports -c -o file.o +configure:14705: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 +configure:14709: $? = 0 +configure:14731: result: yes +configure:14736: checking if /opt/psi/Programming/gcc/7.3.0/bin/g++ supports -c -o file.o +configure:14783: result: yes +configure:14813: checking whether the /opt/psi/Programming/gcc/7.3.0/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:14853: result: yes +configure:14994: checking dynamic linker characteristics +configure:15742: result: GNU/Linux ld.so +configure:15807: checking how to hardcode library paths into programs +configure:15832: result: immediate +configure:16057: checking cadef.h usability +configure:16057: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp >&5 +conftest.cpp:57:10: fatal error: cadef.h: No such file or directory + #include + ^~~~~~~~~ +compilation terminated. +configure:16057: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "CAFE" +| #define PACKAGE_TARNAME "cafe" +| #define PACKAGE_VERSION "1.22.0" +| #define PACKAGE_STRING "CAFE 1.22.0" +| #define PACKAGE_BUGREPORT "Bug reports to: jan.chrin@psi.ch" +| #define PACKAGE_URL "" +| #define PACKAGE "cafe" +| #define VERSION "1.22.0" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LINUX 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:16057: result: no +configure:16057: checking cadef.h presence +configure:16057: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp +conftest.cpp:24:10: fatal error: cadef.h: No such file or directory + #include + ^~~~~~~~~ +compilation terminated. +configure:16057: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "CAFE" +| #define PACKAGE_TARNAME "cafe" +| #define PACKAGE_VERSION "1.22.0" +| #define PACKAGE_STRING "CAFE 1.22.0" +| #define PACKAGE_BUGREPORT "Bug reports to: jan.chrin@psi.ch" +| #define PACKAGE_URL "" +| #define PACKAGE "cafe" +| #define VERSION "1.22.0" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LINUX 1 +| /* end confdefs.h. */ +| #include +configure:16057: result: no +configure:16057: checking for cadef.h +configure:16057: result: no +configure:16065: WARNING: cadef.h not not found! +configure:16076: checking epicsTypes.h usability +configure:16076: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp >&5 +conftest.cpp:57:10: fatal error: epicsTypes.h: No such file or directory + #include + ^~~~~~~~~~~~~~ +compilation terminated. +configure:16076: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "CAFE" +| #define PACKAGE_TARNAME "cafe" +| #define PACKAGE_VERSION "1.22.0" +| #define PACKAGE_STRING "CAFE 1.22.0" +| #define PACKAGE_BUGREPORT "Bug reports to: jan.chrin@psi.ch" +| #define PACKAGE_URL "" +| #define PACKAGE "cafe" +| #define VERSION "1.22.0" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LINUX 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:16076: result: no +configure:16076: checking epicsTypes.h presence +configure:16076: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc conftest.cpp +conftest.cpp:24:10: fatal error: epicsTypes.h: No such file or directory + #include + ^~~~~~~~~~~~~~ +compilation terminated. +configure:16076: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "CAFE" +| #define PACKAGE_TARNAME "cafe" +| #define PACKAGE_VERSION "1.22.0" +| #define PACKAGE_STRING "CAFE 1.22.0" +| #define PACKAGE_BUGREPORT "Bug reports to: jan.chrin@psi.ch" +| #define PACKAGE_URL "" +| #define PACKAGE "cafe" +| #define VERSION "1.22.0" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LINUX 1 +| /* end confdefs.h. */ +| #include +configure:16076: result: no +configure:16076: checking for epicsTypes.h +configure:16076: result: no +configure:16084: WARNING: epicsTypes.h not found! +configure:16093: checking for main in -lca +configure:16112: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 conftest.cpp -lca >&5 +/usr/bin/ld: warning: -z nodefs ignored. +configure:16112: $? = 0 +configure:16121: result: yes +configure:16134: checking for main in -lCom +configure:16153: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 conftest.cpp -lCom >&5 +/usr/bin/ld: warning: -z nodefs ignored. +configure:16153: $? = 0 +configure:16162: result: yes +configure:16175: checking for main in -ldl +configure:16194: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 conftest.cpp -ldl >&5 +/usr/bin/ld: warning: -z nodefs ignored. +configure:16194: $? = 0 +configure:16203: result: yes +configure:16408: checking multi_index_container.hpp usability +configure:16408: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include conftest.cpp >&5 +configure:16408: $? = 0 +configure:16408: result: yes +configure:16408: checking multi_index_container.hpp presence +configure:16408: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include conftest.cpp +configure:16408: $? = 0 +configure:16408: result: yes +configure:16408: checking for multi_index_container.hpp +configure:16408: result: yes +configure:16632: checking Python.h usability +configure:16632: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include conftest.cpp >&5 +configure:16632: $? = 0 +configure:16632: result: yes +configure:16632: checking Python.h presence +configure:16632: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include conftest.cpp +configure:16632: $? = 0 +configure:16632: result: yes +configure:16632: checking for Python.h +configure:16632: result: yes +configure:16795: checking for main in -lpython3.5m +configure:16814: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib conftest.cpp -lpython3.5m >&5 +/usr/bin/ld: warning: -z nodefs ignored. +configure:16814: $? = 0 +configure:16823: result: yes +configure:17122: checking qxml.h usability +configure:17122: /opt/psi/Programming/gcc/7.3.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml conftest.cpp >&5 +configure:17122: $? = 0 +configure:17122: result: yes +configure:17122: checking qxml.h presence +configure:17122: /opt/psi/Programming/gcc/7.3.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml conftest.cpp +configure:17122: $? = 0 +configure:17122: result: yes +configure:17122: checking for qxml.h +configure:17122: result: yes +configure:17140: checking for main in -lQtCore +configure:17159: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib conftest.cpp -lQtCore -lpython3.5m >&5 +/usr/bin/ld: warning: -z nodefs ignored. +configure:17159: $? = 0 +configure:17168: result: yes +configure:17186: checking for main in -lQtXml +configure:17205: /opt/psi/Programming/gcc/7.3.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib conftest.cpp -lQtXml -lQtCore -lpython3.5m >&5 +/usr/bin/ld: warning: -z nodefs ignored. +configure:17205: $? = 0 +configure:17214: result: yes +configure:18169: checking that generated files are newer than configure +configure:18175: result: done +configure:18214: creating ./config.status + +## ---------------------- ## +## Running config.status. ## +## ---------------------- ## + +This file was extended by CAFE config.status 1.22.0, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + $ ./config.status + +on pc13470.psi.ch + +config.status:1182: creating makefile +config.status:1182: creating src/makefile +config.status:1182: creating include/makefile +config.status:1182: creating ./include/config.h +config.status:1411: executing depfiles commands +config.status:1488: cd src && sed -e '/# am--include-marker/d' makefile | make -f - am--depfiles +make: Nothing to be done for 'am--depfiles'. +config.status:1493: $? = 0 +config.status:1411: executing libtool commands ## ---------------- ## ## Cache variables. ## @@ -602,8 +796,8 @@ ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= -ac_cv_env_CC_set= -ac_cv_env_CC_value= +ac_cv_env_CC_set=set +ac_cv_env_CC_value=/opt/psi/Programming/gcc/7.3.0/bin/gcc ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= @@ -614,8 +808,8 @@ ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= -ac_cv_env_CXX_set= -ac_cv_env_CXX_value= +ac_cv_env_CXX_set=set +ac_cv_env_CXX_value=/opt/psi/Programming/gcc/7.3.0/bin/g++ ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= @@ -629,9 +823,9 @@ ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_header_Python_h=yes -ac_cv_header_cadef_h=yes +ac_cv_header_cadef_h=no ac_cv_header_dlfcn_h=yes -ac_cv_header_epicsTypes_h=yes +ac_cv_header_epicsTypes_h=no ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_multi_index_container_hpp=yes @@ -646,25 +840,24 @@ ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=x86_64-pc-linux-gnu ac_cv_lib_Com_main=yes -ac_cv_lib_Qt5Core_write=yes -ac_cv_lib_Qt5Xml_qt_version_tag=yes +ac_cv_lib_QtCore_main=yes +ac_cv_lib_QtXml_main=yes ac_cv_lib_ca_main=yes ac_cv_lib_dl_main=yes -ac_cv_lib_python3_7m_main=yes +ac_cv_lib_python3_5m_main=yes ac_cv_objext=o -ac_cv_path_EGREP='/bin/grep -E' -ac_cv_path_FGREP='/bin/grep -F' -ac_cv_path_GREP=/bin/grep -ac_cv_path_SED=/bin/sed -ac_cv_path_install='/bin/install -c' -ac_cv_path_lt_DD=/bin/dd -ac_cv_path_mkdir=/bin/mkdir +ac_cv_path_EGREP='/usr/bin/grep -E' +ac_cv_path_FGREP='/usr/bin/grep -F' +ac_cv_path_GREP=/usr/bin/grep +ac_cv_path_SED=/usr/bin/sed +ac_cv_path_install='/usr/bin/install -c' +ac_cv_path_lt_DD=/usr/bin/dd +ac_cv_path_mkdir=/usr/bin/mkdir ac_cv_prog_AWK=gawk -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_CXXCPP='g++ -E' +ac_cv_prog_CPP='/opt/psi/Programming/gcc/7.3.0/bin/gcc -E' +ac_cv_prog_CXXCPP='/opt/psi/Programming/gcc/7.3.0/bin/g++ -E' ac_cv_prog_ac_ct_AR=ar -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_ac_ct_CXX=g++ +ac_cv_prog_ac_ct_CC=/opt/psi/Programming/gcc/7.3.0/bin/gcc ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip @@ -684,9 +877,9 @@ lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs -lt_cv_path_LD=/bin/ld -lt_cv_path_LDCXX='/bin/ld -m elf_x86_64' -lt_cv_path_NM='/bin/nm -B' +lt_cv_path_LD=/usr/bin/ld +lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64' +lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes @@ -709,7 +902,7 @@ lt_cv_sys_global_symbol_to_import= lt_cv_sys_max_cmd_len=1572864 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop -lt_cv_truncate_bin='/bin/dd bs=4096 count=1' +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' ## ----------------- ## ## Output variables. ## @@ -721,10 +914,10 @@ AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' -AM_CPPFLAGS=' -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml' +AM_CPPFLAGS=' -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='1' -AM_LDFLAGS=' -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib ' +AM_LDFLAGS=' -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib ' AM_V='$(V)' AR='ar' AUTOCONF='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoconf' @@ -732,13 +925,13 @@ AUTOHEADER='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoheader' AUTOMAKE='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing automake-1.16' AWK='gawk' CAFE_CPPFLAGS='-I$(top_srcdir)/include ' -CC='gcc' +CC='/opt/psi/Programming/gcc/7.3.0/bin/gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' -CPP='gcc -E' -CPPFLAGS=' -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml' -CXX='g++' -CXXCPP='g++ -E' +CPP='/opt/psi/Programming/gcc/7.3.0/bin/gcc -E' +CPPFLAGS=' -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml' +CXX='/opt/psi/Programming/gcc/7.3.0/bin/g++' +CXXCPP='/opt/psi/Programming/gcc/7.3.0/bin/g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' @@ -750,10 +943,10 @@ DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' -EGREP='/bin/grep -E' +EGREP='/usr/bin/grep -E' EXEEXT='' -FGREP='/bin/grep -F' -GREP='/bin/grep' +FGREP='/usr/bin/grep -F' +GREP='/usr/bin/grep' HAVE_PYCAFE_EXT__FALSE='#' HAVE_PYCAFE_EXT__TRUE='' HAVE_PYTHON__FALSE='#' @@ -764,10 +957,10 @@ INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' -LD='/bin/ld -m elf_x86_64' -LDFLAGS=' -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib ' +LD='/usr/bin/ld -m elf_x86_64' +LDFLAGS=' -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib ' LIBOBJS='' -LIBS='-lQt5Xml -lQt5Core -lpython3.7m ' +LIBS='-lQtXml -lQtCore -lpython3.5m ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' @@ -775,8 +968,8 @@ LTLIBOBJS='' LT_SYS_LIBRARY_PATH='' MAKEINFO='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo' MANIFEST_TOOL=':' -MKDIR_P='/bin/mkdir -p' -NM='/bin/nm -B' +MKDIR_P='/usr/bin/mkdir -p' +NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' @@ -791,14 +984,14 @@ PACKAGE_URL='' PACKAGE_VERSION='1.22.0' PATH_SEPARATOR=':' RANLIB='ranlib' -SED='/bin/sed' +SED='/usr/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='1.22.0' ac_ct_AR='ar' -ac_ct_CC='gcc' -ac_ct_CXX='g++' +ac_ct_CC='/opt/psi/Programming/gcc/7.3.0/bin/gcc' +ac_ct_CXX='' ac_ct_DUMPBIN='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' @@ -833,7 +1026,7 @@ htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/install-sh' -libdir='/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64' +libdir='/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' @@ -841,7 +1034,7 @@ mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' -prefix='/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-' +prefix='/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' @@ -875,68 +1068,21 @@ target_alias='' #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define HAVE_LINUX 1 -#define HAVE_CADEF_H 1 -#define HAVE_EPICSTYPES_H 1 -#define HAVE_EPICS 7.4.1 +#define HAVE_EPICS 7.0.9 #define EPICS_MAJOR 7 -#define EPICS_MINOR 4 -#define EPICS_PATCH 1 +#define EPICS_MINOR 0 +#define EPICS_PATCH 9 #define HAVE_MULTI_INDEX_CONTAINER_HPP 1 #define HAVE_BOOST 1 #define HAVE_PYTHON_H 1 -#define HAVE_LIBPYTHON3_7M 1 +#define HAVE_LIBPYTHON3_5M 1 #define HAVE_PYTHON 1 #define HAVE_PYCAFE_EXT 1 #define HAVE_QXML_H 1 -#define HAVE_LIBQT5CORE 1 -#define HAVE_LIBQT5XML 1 +#define HAVE_LIBQTCORE 1 +#define HAVE_LIBQTXML 1 #define HAVE_QT 1 #define HAVE_LIBQTXML 1 #define QT_NO_VERSION_TAGGING 1 configure: exit 0 - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by CAFE config.status 1.22.0, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on sls-lc8.psi.ch - -config.status:1184: creating makefile -config.status:1184: creating src/makefile -config.status:1184: creating include/makefile -config.status:1184: creating ./include/config.h -config.status:1413: executing depfiles commands -config.status:1490: cd src && sed -e '/# am--include-marker/d' makefile | make -f - am--depfiles -make[1]: Entering directory '/afs/psi.ch/project/cafe/gitea/CAFE/cpp/src' -make[1]: Nothing to be done for 'am--depfiles'. -make[1]: Leaving directory '/afs/psi.ch/project/cafe/gitea/CAFE/cpp/src' -config.status:1495: $? = 0 -config.status:1413: executing libtool commands - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by CAFE config.status 1.22.0, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status ./include/config.h - -on sls-lc8.psi.ch - -config.status:1184: creating ./include/config.h -config.status:1365: ./include/config.h is unchanged diff --git a/config.status b/config.status index 90cdc3d..1eb214b 100755 --- a/config.status +++ b/config.status @@ -427,7 +427,7 @@ $config_commands Report bugs to ." -ac_cs_config="'--prefix=/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-' '--libdir=/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--enable-python37' '--enable-qt5' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/opt/gfa/python-3.10/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/opt/gfa/python-3.10/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/opt/gfa/cafe/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/opt/gfa/cafe/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/opt/gfa/cafe/deps/zmq/curl-7.55.1' '--with-lz4=/opt/gfa/cafe/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.9'" +ac_cs_config="'--prefix=/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--enable-python35' '--enable-qt4' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/opt/gfa/python-3.10/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/opt/gfa/python-3.10/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/opt/gfa/cafe/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/opt/gfa/cafe/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/opt/gfa/cafe/deps/zmq/curl-7.55.1' '--with-lz4=/opt/gfa/cafe/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.9' 'CXX=/opt/psi/Programming/gcc/7.3.0/bin/g++' 'CC=/opt/psi/Programming/gcc/7.3.0/bin/gcc'" ac_cs_version="\ CAFE config.status 1.22.0 configured by ./configure, generated by GNU Autoconf 2.69, @@ -439,8 +439,8 @@ gives unlimited permission to copy, distribute and modify it." ac_pwd='/afs/psi.ch/project/cafe/gitea/CAFE/cpp' srcdir='.' -INSTALL='/bin/install -c' -MKDIR_P='/bin/mkdir -p' +INSTALL='/usr/bin/install -c' +MKDIR_P='/usr/bin/mkdir -p' AWK='gawk' test -n "$AWK" || AWK=awk # The default lists apply if the user does not specify any file. @@ -519,7 +519,7 @@ if $ac_cs_silent; then fi if $ac_cs_recheck; then - set X /bin/sh './configure' '--prefix=/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-' '--libdir=/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--enable-python37' '--enable-qt5' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/opt/gfa/python-3.10/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/opt/gfa/python-3.10/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/opt/gfa/cafe/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/opt/gfa/cafe/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/opt/gfa/cafe/deps/zmq/curl-7.55.1' '--with-lz4=/opt/gfa/cafe/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.9' $ac_configure_extra_args --no-create --no-recursion + set X /bin/sh './configure' '--prefix=/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--enable-python35' '--enable-qt4' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/opt/gfa/python-3.10/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/opt/gfa/python-3.10/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/opt/gfa/cafe/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/opt/gfa/cafe/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/opt/gfa/cafe/deps/zmq/curl-7.55.1' '--with-lz4=/opt/gfa/cafe/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.9' 'CXX=/opt/psi/Programming/gcc/7.3.0/bin/g++' 'CC=/opt/psi/Programming/gcc/7.3.0/bin/gcc' $ac_configure_extra_args --no-create --no-recursion shift $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 CONFIG_SHELL='/bin/sh' @@ -565,13 +565,13 @@ host_os='linux-gnu' build_alias='' build='x86_64-pc-linux-gnu' build_os='linux-gnu' -SED='/bin/sed' -Xsed='/bin/sed -e 1s/^X//' -GREP='/bin/grep' -EGREP='/bin/grep -E' -FGREP='/bin/grep -F' -LD='/bin/ld -m elf_x86_64' -NM='/bin/nm -B' +SED='/usr/bin/sed' +Xsed='/usr/bin/sed -e 1s/^X//' +GREP='/usr/bin/grep' +EGREP='/usr/bin/grep -E' +FGREP='/usr/bin/grep -F' +LD='/usr/bin/ld -m elf_x86_64' +NM='/usr/bin/nm -B' LN_S='ln -s' max_cmd_len='1572864' ac_objext='o' @@ -599,9 +599,9 @@ old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' old_postuninstall_cmds='' old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' lock_old_archive_extraction='no' -CC='gcc' +CC='/opt/psi/Programming/gcc/7.3.0/bin/gcc' CFLAGS='-g -O2' -compiler='g++' +compiler='/opt/psi/Programming/gcc/7.3.0/bin/g++' GCC='yes' lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' @@ -611,7 +611,7 @@ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) lt_cv_nm_interface='BSD nm' nm_file_list_spec='@' lt_sysroot='' -lt_cv_truncate_bin='/bin/dd bs=4096 count=1' +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' objdir='.libs' MAGIC_CMD='file' lt_prog_compiler_no_builtin_flag=' -fno-builtin' @@ -678,8 +678,8 @@ postuninstall_cmds='' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' finish_eval='' hardcode_into_libs='yes' -sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib64 /lib64 /opt/psi/Tools/HDFView/3.1.2/lib /usr/lib /lib ' -configure_time_dlsearch_path='/lib /usr/lib /usr/lib64/atlas /usr/lib64/llvm17/lib/ /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 /usr/lib64/wine/ ' +sys_lib_search_path_spec='/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib /lib /usr/lib ' +configure_time_dlsearch_path='/lib64 /usr/lib64 /lib /usr/lib /usr/lib64/atlas /usr/lib64/dyninst /usr/lib64/iscsi /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 ' configure_time_lt_sys_library_path='' hardcode_action='immediate' enable_dlopen='unknown' @@ -693,11 +693,11 @@ postdep_objects='' predeps='' postdeps='' compiler_lib_search_path='' -LD_CXX='/bin/ld -m elf_x86_64' +LD_CXX='/usr/bin/ld -m elf_x86_64' reload_flag_CXX=' -r' reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs' old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -compiler_CXX='g++' +compiler_CXX='/opt/psi/Programming/gcc/7.3.0/bin/g++' GCC_CXX='yes' lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' lt_prog_compiler_pic_CXX=' -fPIC -DPIC' @@ -735,16 +735,16 @@ prelink_cmds_CXX='' postlink_cmds_CXX='' file_list_spec_CXX='' hardcode_action_CXX='immediate' -compiler_lib_search_dirs_CXX='/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Tools/HDFView/3.1.2/lib /usr/lib/gcc/x86_64-redhat-linux/8/../../..' -predep_objects_CXX='/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/8/crtbeginS.o' -postdep_objects_CXX='/usr/lib/gcc/x86_64-redhat-linux/8/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crtn.o' +compiler_lib_search_dirs_CXX='/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64/../lib64 /opt/psi/Programming/gcc/7.3.0/lib/../lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/7.3.0/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../..' +predep_objects_CXX='/lib/../lib64/crti.o /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o' +postdep_objects_CXX='/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtendS.o /lib/../lib64/crtn.o' predeps_CXX='' postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s' -compiler_lib_search_path_CXX='-L/usr/lib/gcc/x86_64-redhat-linux/8 -L/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Tools/HDFView/3.1.2/lib -L/usr/lib/gcc/x86_64-redhat-linux/8/../../..' +compiler_lib_search_path_CXX='-L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/7.3.0/lib64/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib/../lib64 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib64 -L/opt/psi/Programming/gcc/7.3.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../..' -LTCC='gcc' +LTCC='/opt/psi/Programming/gcc/7.3.0/bin/gcc' LTCFLAGS='-g -O2' -compiler='gcc' +compiler='/opt/psi/Programming/gcc/7.3.0/bin/gcc' # A function that is used when there is no print builtin or printf. func_fallback_echo () @@ -883,15 +883,15 @@ S["HAVE_PYCAFE_EXT__FALSE"]="#" S["HAVE_PYCAFE_EXT__TRUE"]="" S["HAVE_PYTHON__FALSE"]="#" S["HAVE_PYTHON__TRUE"]="" -S["AM_LDFLAGS"]=" -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath"\ -",/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib " +S["AM_LDFLAGS"]=" -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath"\ +",/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib " S["AM_CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/ba"\ -"se-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/late"\ -"st/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/g"\ -"fa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml" +"se-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/late"\ +"st/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/"\ +"python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml" S["CAFE_CPPFLAGS"]="-I$(top_srcdir)/include " -S["CXXCPP"]="g++ -E" -S["CPP"]="gcc -E" +S["CXXCPP"]="/opt/psi/Programming/gcc/7.3.0/bin/g++ -E" +S["CPP"]="/opt/psi/Programming/gcc/7.3.0/bin/gcc -E" S["LT_SYS_LIBRARY_PATH"]="" S["OTOOL64"]="" S["OTOOL"]="" @@ -905,20 +905,20 @@ S["AR"]="ar" S["DLLTOOL"]="false" S["OBJDUMP"]="objdump" S["LN_S"]="ln -s" -S["NM"]="/bin/nm -B" +S["NM"]="/usr/bin/nm -B" S["ac_ct_DUMPBIN"]="" S["DUMPBIN"]="" -S["LD"]="/bin/ld -m elf_x86_64" -S["FGREP"]="/bin/grep -F" -S["EGREP"]="/bin/grep -E" -S["GREP"]="/bin/grep" -S["SED"]="/bin/sed" +S["LD"]="/usr/bin/ld -m elf_x86_64" +S["FGREP"]="/usr/bin/grep -F" +S["EGREP"]="/usr/bin/grep -E" +S["GREP"]="/usr/bin/grep" +S["SED"]="/usr/bin/sed" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" -S["ac_ct_CC"]="gcc" +S["ac_ct_CC"]="/opt/psi/Programming/gcc/7.3.0/bin/gcc" S["CFLAGS"]="-g -O2" -S["CC"]="gcc" +S["CC"]="/opt/psi/Programming/gcc/7.3.0/bin/gcc" S["host_os"]="linux-gnu" S["host_vendor"]="pc" S["host_cpu"]="x86_64" @@ -939,15 +939,15 @@ S["am__include"]="include" S["DEPDIR"]=".deps" S["OBJEXT"]="o" S["EXEEXT"]="" -S["ac_ct_CXX"]="g++" +S["ac_ct_CXX"]="" S["CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/ba"\ -"se-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/late"\ -"st/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/g"\ -"fa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml" -S["LDFLAGS"]=" -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath"\ -",/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib " +"se-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/late"\ +"st/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/"\ +"python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml" +S["LDFLAGS"]=" -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath"\ +",/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib " S["CXXFLAGS"]="-g -O2" -S["CXX"]="g++" +S["CXX"]="/opt/psi/Programming/gcc/7.3.0/bin/g++" S["AM_BACKSLASH"]="\\" S["AM_DEFAULT_VERBOSITY"]="1" S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)" @@ -959,7 +959,7 @@ S["am__leading_dot"]="." S["SET_MAKE"]="" S["AWK"]="gawk" S["mkdir_p"]="$(MKDIR_P)" -S["MKDIR_P"]="/bin/mkdir -p" +S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" S["install_sh"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/install-sh" @@ -978,14 +978,14 @@ S["INSTALL_PROGRAM"]="${INSTALL}" S["target_alias"]="" S["host_alias"]="" S["build_alias"]="" -S["LIBS"]="-lQt5Xml -lQt5Core -lpython3.7m " +S["LIBS"]="-lQtXml -lQtCore -lpython3.5m " S["ECHO_T"]="" S["ECHO_N"]="-n" S["ECHO_C"]="" S["DEFS"]="-DHAVE_CONFIG_H" S["mandir"]="${datarootdir}/man" S["localedir"]="${datarootdir}/locale" -S["libdir"]="/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64" +S["libdir"]="/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64" S["psdir"]="${docdir}" S["pdfdir"]="${docdir}" S["dvidir"]="${docdir}" @@ -1003,7 +1003,7 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-" +S["prefix"]="/opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="Bug reports to: jan.chrin@psi.ch" @@ -1076,21 +1076,19 @@ D["HAVE_UNISTD_H"]=" 1" D["HAVE_DLFCN_H"]=" 1" D["LT_OBJDIR"]=" \".libs/\"" D["HAVE_LINUX"]=" 1" -D["HAVE_CADEF_H"]=" 1" -D["HAVE_EPICSTYPES_H"]=" 1" -D["HAVE_EPICS"]=" 7.4.1" +D["HAVE_EPICS"]=" 7.0.9" D["EPICS_MAJOR"]=" 7" -D["EPICS_MINOR"]=" 4" -D["EPICS_PATCH"]=" 1" +D["EPICS_MINOR"]=" 0" +D["EPICS_PATCH"]=" 9" D["HAVE_MULTI_INDEX_CONTAINER_HPP"]=" 1" D["HAVE_BOOST"]=" 1" D["HAVE_PYTHON_H"]=" 1" -D["HAVE_LIBPYTHON3_7M"]=" 1" +D["HAVE_LIBPYTHON3_5M"]=" 1" D["HAVE_PYTHON"]=" 1" D["HAVE_PYCAFE_EXT"]=" 1" D["HAVE_QXML_H"]=" 1" -D["HAVE_LIBQT5CORE"]=" 1" -D["HAVE_LIBQT5XML"]=" 1" +D["HAVE_LIBQTCORE"]=" 1" +D["HAVE_LIBQTXML"]=" 1" D["HAVE_QT"]=" 1" D["HAVE_LIBQTXML"]=" 1" D["QT_NO_VERSION_TAGGING"]=" 1" diff --git a/configurePSI.ac b/configurePSI.ac index 469042e..2619976 100644 --- a/configurePSI.ac +++ b/configurePSI.ac @@ -118,8 +118,8 @@ if test x$HAVE_EPICS_7 == xtrue ; then EPICS_LIB_PATH=${EPICS_PREFIX}"/lib/"${RHREL}"-x86_64" ## Add epics release EPICS_MAJOR_DEFAULT="7" - EPICS_MINOR_DEFAULT="4" - EPICS_PATCH_DEFAULT="1" + EPICS_MINOR_DEFAULT="0" + EPICS_PATCH_DEFAULT="9" ] ) fi diff --git a/include/config.h b/include/config.h index 3803ca7..ad07c08 100644 --- a/include/config.h +++ b/include/config.h @@ -5,10 +5,10 @@ #define EPICS_MAJOR 7 /* epics minor release */ -#define EPICS_MINOR 4 +#define EPICS_MINOR 0 /* epics patch release */ -#define EPICS_PATCH 1 +#define EPICS_PATCH 9 /* Availability of boost */ #define HAVE_BOOST 1 @@ -17,7 +17,7 @@ /* #undef HAVE_BOOST_THREAD */ /* Define to 1 if you have the header file. */ -#define HAVE_CADEF_H 1 +/* #undef HAVE_CADEF_H */ /* Availability of curl */ /* #undef HAVE_CURL */ @@ -29,10 +29,10 @@ #define HAVE_DLFCN_H 1 /* epics version */ -#define HAVE_EPICS 7.4.1 +#define HAVE_EPICS 7.0.9 /* Define to 1 if you have the header file. */ -#define HAVE_EPICSTYPES_H 1 +/* #undef HAVE_EPICSTYPES_H */ /* Define to 1 if you have the header file. */ #define HAVE_INTTYPES_H 1 @@ -63,22 +63,22 @@ /* #undef HAVE_LIBPYTHON3_4M */ /* Define to 1 if you have the `python3.5m' library (-lpython3.5m). */ -/* #undef HAVE_LIBPYTHON3_5M */ +#define HAVE_LIBPYTHON3_5M 1 /* Define to 1 if you have the `python3.7m' library (-lpython3.7m). */ -#define HAVE_LIBPYTHON3_7M 1 +/* #undef HAVE_LIBPYTHON3_7M */ /* Define to 1 if you have the `python3.8' library (-lpython3.8). */ /* #undef HAVE_LIBPYTHON3_8 */ /* Define to 1 if you have the `Qt5Core' library (-lQt5Core). */ -#define HAVE_LIBQT5CORE 1 +/* #undef HAVE_LIBQT5CORE */ /* Define to 1 if you have the `Qt5Xml' library (-lQt5Xml). */ -#define HAVE_LIBQT5XML 1 +/* #undef HAVE_LIBQT5XML */ /* Define to 1 if you have the `QtCore' library (-lQtCore). */ -/* #undef HAVE_LIBQTCORE */ +#define HAVE_LIBQTCORE 1 /* Availability of Qt version 5 confirmed */ #define HAVE_LIBQTXML 1 diff --git a/include/makefile b/include/makefile index cc9e825..51f5f23 100644 --- a/include/makefile +++ b/include/makefile @@ -199,22 +199,22 @@ am__DIST_COMMON = $(srcdir)/makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing aclocal-1.16 AMTAR = $${TAR-tar} -AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml +AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml AM_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib +AM_LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib AR = ar AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoconf AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoheader AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing automake-1.16 AWK = gawk CAFE_CPPFLAGS = -I$(top_srcdir)/include -CC = gcc +CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -CXX = g++ -CXXCPP = g++ -E +CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E +CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml +CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++ +CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo @@ -226,19 +226,19 @@ DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = -EGREP = /bin/grep -E +EGREP = /usr/bin/grep -E EXEEXT = -FGREP = /bin/grep -F -GREP = /bin/grep -INSTALL = /bin/install -c +FGREP = /usr/bin/grep -F +GREP = /usr/bin/grep +INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib LIBOBJS = -LIBS = -lQt5Xml -lQt5Core -lpython3.7m +LIBS = -lQtXml -lQtCore -lpython3.5m LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s @@ -246,8 +246,8 @@ LTLIBOBJS = LT_SYS_LIBRARY_PATH = MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo MANIFEST_TOOL = : -MKDIR_P = /bin/mkdir -p -NM = /bin/nm -B +MKDIR_P = /usr/bin/mkdir -p +NM = /usr/bin/nm -B NMEDIT = OBJDUMP = objdump OBJEXT = o @@ -262,7 +262,7 @@ PACKAGE_URL = PACKAGE_VERSION = 1.22.0 PATH_SEPARATOR = : RANLIB = ranlib -SED = /bin/sed +SED = /usr/bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip @@ -272,8 +272,8 @@ abs_srcdir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp/include abs_top_builddir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp abs_top_srcdir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp ac_ct_AR = ar -ac_ct_CC = gcc -ac_ct_CXX = g++ +ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc +ac_ct_CXX = ac_ct_DUMPBIN = am__include = include am__leading_dot = . @@ -301,7 +301,7 @@ htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64 +libdir = /opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64 libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var @@ -309,7 +309,7 @@ mandir = ${datarootdir}/man mkdir_p = $(MKDIR_P) oldincludedir = /usr/include pdfdir = ${docdir} -prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- +prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0 program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin diff --git a/libtool b/libtool index 6dbb5f1..2bc9dfd 100755 --- a/libtool +++ b/libtool @@ -1,6 +1,6 @@ #! /bin/sh # Generated automatically by config.status (cafe) 1.22.0 -# Libtool was configured on host sls-lc8.psi.ch: +# Libtool was configured on host pc13470.psi.ch: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. @@ -76,22 +76,22 @@ build=x86_64-pc-linux-gnu build_os=linux-gnu # A sed program that does not truncate output. -SED="/bin/sed" +SED="/usr/bin/sed" # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # A grep program that handles long lines. -GREP="/bin/grep" +GREP="/usr/bin/grep" # An ERE matcher. -EGREP="/bin/grep -E" +EGREP="/usr/bin/grep -E" # A literal string matcher. -FGREP="/bin/grep -F" +FGREP="/usr/bin/grep -F" # A BSD- or MS-compatible name lister. -NM="/bin/nm -B" +NM="/usr/bin/nm -B" # Whether we need soft or hard links. LN_S="ln -s" @@ -162,7 +162,7 @@ old_postuninstall_cmds="" lock_old_archive_extraction=no # A C compiler. -LTCC="gcc" +LTCC="/opt/psi/Programming/gcc/7.3.0/bin/gcc" # LTCC compiler flags. LTCFLAGS="-g -O2" @@ -192,7 +192,7 @@ nm_file_list_spec="@" lt_sysroot= # Command to truncate a binary pipe. -lt_truncate_bin="/bin/dd bs=4096 count=1" +lt_truncate_bin="/usr/bin/dd bs=4096 count=1" # The name of the directory that contains temporary libtool files. objdir=.libs @@ -282,10 +282,10 @@ finish_eval="" hardcode_into_libs=yes # Compile-time system search path for libraries. -sys_lib_search_path_spec="/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib64 /lib64 /opt/psi/Tools/HDFView/3.1.2/lib /usr/lib /lib " +sys_lib_search_path_spec="/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib /lib /usr/lib " # Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/lib64/atlas /usr/lib64/llvm17/lib/ /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 /usr/lib64/wine/ " +sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib /usr/lib64/atlas /usr/lib64/dyninst /usr/lib64/iscsi /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 " # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path="" @@ -305,7 +305,7 @@ striplib="strip --strip-unneeded" # The linker used to build libraries. -LD="/bin/ld -m elf_x86_64" +LD="/usr/bin/ld -m elf_x86_64" # How to create reloadable object files. reload_flag=" -r" @@ -315,7 +315,7 @@ reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" # A language specific compiler. -CC="gcc" +CC="/opt/psi/Programming/gcc/7.3.0/bin/gcc" # Is the compiler the GNU compiler? with_gcc=yes @@ -7732,11 +7732,6 @@ func_mode_link () arg=$func_stripname_result ;; - -Wl,--as-needed) - deplibs="$deplibs $arg" - continue - ;; - -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result @@ -7789,10 +7784,12 @@ func_mode_link () # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" @@ -8041,7 +8038,6 @@ func_mode_link () case $linkmode in lib) - as_needed_flag= passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in @@ -8053,7 +8049,6 @@ func_mode_link () done ;; prog) - as_needed_flag= compile_deplibs= finalize_deplibs= alldeplibs=false @@ -8123,15 +8118,6 @@ func_mode_link () lib= found=false case $deplib in - -Wl,--as-needed) - if test prog,link = "$linkmode,$pass" || - test lib,link = "$linkmode,$pass"; then - as_needed_flag="$deplib " - else - deplibs="$deplib $deplibs" - fi - continue - ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then @@ -10549,13 +10535,6 @@ EOF test "X$libobjs" = "X " && libobjs= fi - # A bit hacky. I had wanted to add \$as_needed_flag to archive_cmds instead, but that - # comes from libtool.m4 which is part of the project being built. This should put it - # in the right place though. - if test lib,link = "$linkmode,$pass" && test -n "$as_needed_flag"; then - libobjs=$as_needed_flag$libobjs - fi - save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl @@ -10788,8 +10767,8 @@ EOF compile_deplibs=$new_libs - func_append compile_command " $as_needed_flag $compile_deplibs" - func_append finalize_command " $as_needed_flag $finalize_deplibs" + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. @@ -11684,7 +11663,7 @@ build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. -LD="/bin/ld -m elf_x86_64" +LD="/usr/bin/ld -m elf_x86_64" # How to create reloadable object files. reload_flag=" -r" @@ -11694,7 +11673,7 @@ reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" # A language specific compiler. -CC="g++" +CC="/opt/psi/Programming/gcc/7.3.0/bin/g++" # Is the compiler the GNU compiler? with_gcc=yes @@ -11815,17 +11794,17 @@ file_list_spec="" hardcode_action=immediate # The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs="/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Tools/HDFView/3.1.2/lib /usr/lib/gcc/x86_64-redhat-linux/8/../../.." +compiler_lib_search_dirs="/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64/../lib64 /opt/psi/Programming/gcc/7.3.0/lib/../lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/7.3.0/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../.." # Dependencies to place before and after the objects being linked to # create a shared library. -predep_objects="/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/8/crtbeginS.o" -postdep_objects="/usr/lib/gcc/x86_64-redhat-linux/8/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crtn.o" +predep_objects="/lib/../lib64/crti.o /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o" +postdep_objects="/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtendS.o /lib/../lib64/crtn.o" predeps="" postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s" # The library search path used internally by the compiler when linking # a shared library. -compiler_lib_search_path="-L/usr/lib/gcc/x86_64-redhat-linux/8 -L/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Tools/HDFView/3.1.2/lib -L/usr/lib/gcc/x86_64-redhat-linux/8/../../.." +compiler_lib_search_path="-L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/7.3.0/lib64/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib/../lib64 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib64 -L/opt/psi/Programming/gcc/7.3.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../.." # ### END LIBTOOL TAG CONFIG: CXX diff --git a/m4/libtool.m4 b/m4/libtool.m4 index a3bc337..a644432 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -2867,6 +2867,9 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) # before this can be enabled. hardcode_into_libs=yes + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command @@ -2875,7 +2878,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on diff --git a/makefile b/makefile index 7570127..d4df60a 100644 --- a/makefile +++ b/makefile @@ -194,10 +194,10 @@ am__DIST_COMMON = $(srcdir)/makefile.in $(top_srcdir)/./compile \ $(top_srcdir)/./include/config.in $(top_srcdir)/./install-sh \ $(top_srcdir)/./ltmain.sh $(top_srcdir)/./missing .//AUTHORS \ .//COPYING .//ChangeLog .//INSTALL .//NEWS .//README \ - .//compile .//config.guess .//config.sub .//depcomp \ - .//install-sh .//ltmain.sh .//missing AUTHORS COPYING \ - ChangeLog INSTALL NEWS README compile config.guess config.sub \ - depcomp install-sh ltmain.sh missing + .//compile .//config.guess .//config.sub .//install-sh \ + .//ltmain.sh .//missing AUTHORS COPYING ChangeLog INSTALL NEWS \ + README compile config.guess config.sub install-sh ltmain.sh \ + missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -242,22 +242,22 @@ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ distcleancheck_listfiles = find . -type f -print ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing aclocal-1.16 AMTAR = $${TAR-tar} -AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -I$(top_srcdir)/include +AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml -I$(top_srcdir)/include AM_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib @CAFE_LIBS@ +AM_LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib @CAFE_LIBS@ AR = ar AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoconf AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoheader AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing automake-1.16 AWK = gawk CAFE_CPPFLAGS = -I$(top_srcdir)/include -CC = gcc +CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -CXX = g++ -CXXCPP = g++ -E +CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E +CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml +CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++ +CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo @@ -269,19 +269,19 @@ DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = -EGREP = /bin/grep -E +EGREP = /usr/bin/grep -E EXEEXT = -FGREP = /bin/grep -F -GREP = /bin/grep -INSTALL = /bin/install -c +FGREP = /usr/bin/grep -F +GREP = /usr/bin/grep +INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib LIBOBJS = -LIBS = -lQt5Xml -lQt5Core -lpython3.7m +LIBS = -lQtXml -lQtCore -lpython3.5m LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s @@ -289,8 +289,8 @@ LTLIBOBJS = LT_SYS_LIBRARY_PATH = MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo MANIFEST_TOOL = : -MKDIR_P = /bin/mkdir -p -NM = /bin/nm -B +MKDIR_P = /usr/bin/mkdir -p +NM = /usr/bin/nm -B NMEDIT = OBJDUMP = objdump OBJEXT = o @@ -305,7 +305,7 @@ PACKAGE_URL = PACKAGE_VERSION = 1.22.0 PATH_SEPARATOR = : RANLIB = ranlib -SED = /bin/sed +SED = /usr/bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip @@ -315,8 +315,8 @@ abs_srcdir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp abs_top_builddir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp abs_top_srcdir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp ac_ct_AR = ar -ac_ct_CC = gcc -ac_ct_CXX = g++ +ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc +ac_ct_CXX = ac_ct_DUMPBIN = am__include = include am__leading_dot = . @@ -344,7 +344,7 @@ htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64 +libdir = /opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64 libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var @@ -352,7 +352,7 @@ mandir = ${datarootdir}/man mkdir_p = $(MKDIR_P) oldincludedir = /usr/include pdfdir = ${docdir} -prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- +prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0 program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin diff --git a/src/bitshuffle/.deps/bitshuffle.Plo b/src/bitshuffle/.deps/bitshuffle.Plo index a3acc63..cf4f3c2 100644 --- a/src/bitshuffle/.deps/bitshuffle.Plo +++ b/src/bitshuffle/.deps/bitshuffle.Plo @@ -4,7 +4,7 @@ bitshuffle/bitshuffle.lo: bitshuffle/bitshuffle.c \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h \ /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ @@ -21,11 +21,11 @@ bitshuffle/bitshuffle.lo: bitshuffle/bitshuffle.c \ /usr/include/bits/pthreadtypes-arch.h /usr/include/alloca.h \ /usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \ bitshuffle/bitshuffle_core.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h \ /usr/include/stdint.h /usr/include/bits/wchar.h \ /usr/include/bits/stdint-uintn.h bitshuffle/bitshuffle_internals.h \ bitshuffle/iochain.h .././include/lz4.h /usr/include/stdio.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h \ /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ @@ -54,7 +54,7 @@ bitshuffle/bitshuffle.h: /usr/include/gnu/stubs-64.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h: /usr/include/bits/waitflags.h: @@ -114,7 +114,7 @@ bitshuffle/bitshuffle.h: bitshuffle/bitshuffle_core.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h: /usr/include/stdint.h: @@ -130,7 +130,7 @@ bitshuffle/iochain.h: /usr/include/stdio.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h: /usr/include/bits/types/__fpos_t.h: diff --git a/src/bitshuffle/.deps/bitshuffle_core.Plo b/src/bitshuffle/.deps/bitshuffle_core.Plo index 853c95a..e05ab85 100644 --- a/src/bitshuffle/.deps/bitshuffle_core.Plo +++ b/src/bitshuffle/.deps/bitshuffle_core.Plo @@ -1,6 +1,6 @@ bitshuffle/bitshuffle_core.lo: bitshuffle/bitshuffle_core.c \ /usr/include/stdc-predef.h bitshuffle/bitshuffle_core.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h \ /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/bits/long-double.h \ @@ -8,7 +8,7 @@ bitshuffle/bitshuffle_core.lo: bitshuffle/bitshuffle_core.c \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/bits/wchar.h /usr/include/bits/stdint-intn.h \ /usr/include/bits/stdint-uintn.h /usr/include/stdlib.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h \ /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ @@ -25,7 +25,7 @@ bitshuffle/bitshuffle_core.lo: bitshuffle/bitshuffle_core.c \ /usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \ bitshuffle/bitshuffle_internals.h bitshuffle/iochain.h \ /usr/include/stdio.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h \ /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ @@ -33,16 +33,16 @@ bitshuffle/bitshuffle_core.lo: bitshuffle/bitshuffle_core.c \ /usr/include/bits/stdio.h /usr/include/string.h \ /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ /usr/include/strings.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/emmintrin.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/xmmintrin.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mmintrin.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mm_malloc.h + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/emmintrin.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/xmmintrin.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mmintrin.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mm_malloc.h /usr/include/stdc-predef.h: bitshuffle/bitshuffle_core.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h: /usr/include/stdint.h: @@ -72,7 +72,7 @@ bitshuffle/bitshuffle_core.h: /usr/include/stdlib.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h: /usr/include/bits/waitflags.h: @@ -130,7 +130,7 @@ bitshuffle/iochain.h: /usr/include/stdio.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h: /usr/include/bits/types/__fpos_t.h: @@ -158,10 +158,10 @@ bitshuffle/iochain.h: /usr/include/strings.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/emmintrin.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/emmintrin.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/xmmintrin.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/xmmintrin.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mmintrin.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mmintrin.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mm_malloc.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mm_malloc.h: diff --git a/src/bitshuffle/.deps/iochain.Plo b/src/bitshuffle/.deps/iochain.Plo index f5690e5..4e73f15 100644 --- a/src/bitshuffle/.deps/iochain.Plo +++ b/src/bitshuffle/.deps/iochain.Plo @@ -3,7 +3,7 @@ bitshuffle/iochain.lo: bitshuffle/iochain.c /usr/include/stdc-predef.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/bits/long-double.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h \ + /afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h \ /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ @@ -39,7 +39,7 @@ bitshuffle/iochain.lo: bitshuffle/iochain.c /usr/include/stdc-predef.h \ /usr/include/gnu/stubs-64.h: -/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h: +/afs/psi.ch/sys/psi.ra/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h: /usr/include/bits/waitflags.h: diff --git a/src/makefile b/src/makefile index 769fdd3..6944ea9 100644 --- a/src/makefile +++ b/src/makefile @@ -276,22 +276,22 @@ AMTAR = $${TAR-tar} #if HAVE_PYTHON_ #libcafe_la_SOURCES += pycafe/PyCafe.cpp #endif -AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -I$(top_srcdir)/include +AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml -I$(top_srcdir)/include AM_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib +AM_LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib AR = ar AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoconf AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoheader AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing automake-1.16 AWK = gawk CAFE_CPPFLAGS = -I$(top_srcdir)/include -CC = gcc +CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/python3.7m -I/opt/gfa/python-3.7/latest/lib/python3.7/site-packages/numpy/core/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -CXX = g++ -CXXCPP = g++ -E +CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E +CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.9/include/ -I/usr/local/epics/base-7.0.9/include/os/Linux -I/usr/local/epics/base-7.0.9/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml +CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++ +CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo @@ -303,19 +303,19 @@ DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = -EGREP = /bin/grep -E +EGREP = /usr/bin/grep -E EXEEXT = -FGREP = /bin/grep -F -GREP = /bin/grep -INSTALL = /bin/install -c +FGREP = /usr/bin/grep -F +GREP = /usr/bin/grep +INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = -L/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.9/lib/RHEL8-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib LIBOBJS = -LIBS = -lQt5Xml -lQt5Core -lpython3.7m +LIBS = -lQtXml -lQtCore -lpython3.5m LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s @@ -323,8 +323,8 @@ LTLIBOBJS = LT_SYS_LIBRARY_PATH = MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo MANIFEST_TOOL = : -MKDIR_P = /bin/mkdir -p -NM = /bin/nm -B +MKDIR_P = /usr/bin/mkdir -p +NM = /usr/bin/nm -B NMEDIT = OBJDUMP = objdump OBJEXT = o @@ -339,7 +339,7 @@ PACKAGE_URL = PACKAGE_VERSION = 1.22.0 PATH_SEPARATOR = : RANLIB = ranlib -SED = /bin/sed +SED = /usr/bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip @@ -349,8 +349,8 @@ abs_srcdir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp/src abs_top_builddir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp abs_top_srcdir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp ac_ct_AR = ar -ac_ct_CC = gcc -ac_ct_CXX = g++ +ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc +ac_ct_CXX = ac_ct_DUMPBIN = am__include = include am__leading_dot = . @@ -378,7 +378,7 @@ htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64 +libdir = /opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0/lib/RHEL8-x86_64 libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var @@ -386,7 +386,7 @@ mandir = ${datarootdir}/man mkdir_p = $(MKDIR_P) oldincludedir = /usr/include pdfdir = ${docdir} -prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- +prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py35-gcc-7.3.0 program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin @@ -406,7 +406,7 @@ lib_LTLIBRARIES = libcafe.la #2nd: age #3rd: revision #1.9.2 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4 -libcafe_la_LDFLAGS = -version-info 22:0:21 +libcafe_la_LDFLAGS = -version-info 23:0:22 libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp \ cafeVectors.cpp cafeXML.cpp callbackHandlerCreate.cpp \ callbackHandlerMonitor.cpp conduit.cpp connect.cpp \ diff --git a/src/makefile.am b/src/makefile.am index ce5d69d..14df165 100644 --- a/src/makefile.am +++ b/src/makefile.am @@ -12,7 +12,7 @@ lib_LTLIBRARIES = libcafe.la #2nd: age #3rd: revision #1.9.2 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4 -libcafe_la_LDFLAGS = -version-info 22:0:21 +libcafe_la_LDFLAGS = -version-info 23:0:22 libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp cafeVectors.cpp cafeXML.cpp \ callbackHandlerCreate.cpp callbackHandlerMonitor.cpp conduit.cpp connect.cpp connectCallbacks.cpp \