From 9e00fc0e0c9331c6ff4f91ebb7d17615f9720a01 Mon Sep 17 00:00:00 2001 From: chrin Date: Wed, 1 Oct 2025 12:36:28 +0200 Subject: [PATCH] first user commit to gitea --- autogen.sh | 87 +----- autogen_psi.sh | 293 ------------------- autogen_sfbd.sh | 25 +- config.log | 710 ++++++++++++++++++++++++++--------------------- config.status | 154 +++++----- configurePSI.ac | 2 +- include/config.h | 32 +-- include/makefile | 72 ++--- libtool | 67 +++-- m4/libtool.m4 | 5 +- makefile | 76 ++--- src/makefile | 72 ++--- 12 files changed, 674 insertions(+), 921 deletions(-) mode change 100644 => 120000 autogen.sh delete mode 100644 autogen_psi.sh diff --git a/autogen.sh b/autogen.sh deleted file mode 100644 index 7239564..0000000 --- a/autogen.sh +++ /dev/null @@ -1,86 +0,0 @@ -### psi specific - select compiler -rm -f configure.ac -ln -s configurePSI.ac configure.ac -rm -f src/PyCafe.cpp -ln -s PyCafe_sls.cpp src/PyCafe.cpp -rm -f ./aclocal.m4 -rm -rf ./autom4te.cache -aclocal --force -I m4 -/opt/gfa/python-3.7/latest/bin/libtoolize --force --copy #select libtools 2.4.6 -autoconf --force #interprets configure.ac -autoheader --force -automake --force --add-missing --copy - -#Check what the EPICS RELEASE IS from ${EPICS}/base -#Used by ./configure -#Assumes format ${EPICS}/base-3.14.12 -#source cafeVersion-gcc-7.3.0 -CAFE_V="cafe-1.13.0" -#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH -#Assume Linux but check if Darwin -CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin") -echo 'darwin' $CAFE_HOST_FLAG_DARWIN -export CAFE_HOST_FLAG_DARWIN=$CAFE_HOST_FLAG_DARWIN - -EPICS_BASE=$(readlink ${EPICS}/base) -#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base) -echo $EPICS_BASE -if [ -z "$EPICS_BASE" ] -then - EPICS_BASE='base-7.4.1' #7.0 = 7+0 = 7 for major release -fi - -echo 'input' "$0" "$1" "$2" -echo $EPICS_BASE - - -EB1=$(echo $EPICS_BASE | sed -e "s/[a-zA-Z]*-//g") -EBMAJ=$(echo $EB1 | sed -e "s/[[:punct:]].*//g") -EBMIN1=$(echo $EB1 | sed -e "s/^[[:digit:]]*[[:punct:]]//g") -EBMIN=$(echo $EBMIN1 | sed -e "s/[[:punct:]][[:digit:]]*//g") -EBPAT=$(echo $EB1 | sed -e "s/[[:digit:]]*[[:punct:]]//g") -echo EPICS_MAJOR=$EBMAJ -echo EPICS_MINOR=$EBMIN -echo EPICS_PATCH=$EBPAT -#echo $EBMIN1 - -export CAFE_EPICS_V_MAJOR=$EBMAJ -export CAFE_EPICS_V_MINOR=$EBMIN -export CAFE_EPICS_V_PATCH=$EBPAT - -ENABLE_OPTIONS="--enable-boost-inc" -ENABLE_OPTIONS+=" --enable-epics3" -#ENABLE_OPTIONS+=" --enable-epics7" -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" - -echo 'ENABLE_OPTIONS='$ENABLE_OPTIONS - -./configure \ - --prefix=/opt/gfa/cafe/cpp/${CAFE_V} \ - --libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${EPICS_HOST_ARCH} \ - ${ENABLE_OPTIONS} \ - --with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include \ - --with-epics7=${EPICS}/base-7.0.4.1 \ - --with-epics3=${EPICS}/base \ - --with-python37=/opt/gfa/python-3.7/latest \ - --with-python35=/opt/gfa/python-3.5/latest \ - --with-qt5=/opt/gfa/python-3.7/latest \ - --with-qt4=/opt/gfa/python-3.5/latest \ - --with-json=/opt/gfa/zmsglog/json/jsoncpp-src-0.6.0-rc2 \ - --with-zeromq=/opt/gfa/zmq/zeromq-4.2.3-gcc-6.3.0 \ - --with-curl=/opt/gfa/zmq/curl-7.55.1 \ - --with-lz4=/opt/gfa/zmq/lz4/lib - -unset CAFE_EPICS_V_PATCH -unset CAFE_EPICS_V_MINOR -unset CAFE_EPICS_V_MAJOR - -unset CAFE_HOST_FLAG_DARWIN - diff --git a/autogen.sh b/autogen.sh new file mode 120000 index 0000000..5d94138 --- /dev/null +++ b/autogen.sh @@ -0,0 +1 @@ +autogen_sfbd.sh \ No newline at end of file diff --git a/autogen_psi.sh b/autogen_psi.sh deleted file mode 100644 index feea7a0..0000000 --- a/autogen_psi.sh +++ /dev/null @@ -1,293 +0,0 @@ -### psi specific - select compiler -#source -# default is sf -# -module unload gcc -module load gcc/7.3.0 -### psi specific - end - -rm -f configure.ac -ln -s configurePSI.ac configure.ac - -rm -f ./aclocal.m4 -rm -rf ./autom4te.cache -aclocal --force -I m4 -/opt/gfa/python-3.7/latest/bin/libtoolize --force --copy #select libtools 2.4.6 -autoconf --force #interprets configure.ac -autoheader --force -automake --force --add-missing --copy -#autoreconf not wanted - -#Check what the EPICS RELEASE IS from ${EPICS}/base -#Used by ./configure -#Assumes format ${EPICS}/base-3.14.12 -#source cafeVersion-gcc-7.3.0 -CAFE_V="cafe-1.14.5" -#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH -#Assume Linux but check if Darwin -CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin") -export CAFE_HOST_FLAG_DARWIN=$CAFE_HOST_FLAG_DARWIN - -RETURN_ON_WRONG_INPUT=true -RETURN_FLAG=false - -EPICS_BASE=$(readlink ${EPICS}/base) -#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base) -echo $EPICS_BASE -if [ -z "$EPICS_BASE" ] -then - EPICS_BASE='base-7' #7.0 = 7+0 = 7 for major release -fi - -echo 'input' "$0" "$1" "$2" -echo $EPICS_BASE - -FACILITY=$(echo "$1" | tr '[:upper:]' '[:lower:]') -CACLIENT=$(echo "$2" | tr '[:upper:]' '[:lower:]') - -FACILITY_DEFAULT="sf" -CACLIENT_DEFAULT="python" - -FACILITY_TEMP="" -CACLIENT_TEMP="" - -echo 'input arg. facility/target' $FACILITY $CACLIENT - -if [ -n "$FACILITY" ] -then - if [ "$FACILITY" = "matlab" ] || [ "$FACILITY" = "python" ] || \ - [ "$FACILITY" = "py310" ] || [ "$FACILITY" = "py38" ] || \ - [ "$FACILITY" = "py37" ] || [ "$FACILITY" = "py35" ] || \ - [ "$FACILITY" = "julia" ] || [ "$FACILITY" = "cpp" ] || \ - [ "$FACILITY" = "cc" ] - then - CACLIENT_TEMP=$FACILITY - FACILITY_TEMP=$2 - fi -fi - -if [ -n "$CACLIENT" ] -then - if [ "$CACLIENT" = "sls" ] || [ "$CACLIENT" = "sls2" ] || \ - [ "$CACLIENT" = "sf" ] || [ "$CACLIENT" = "swissfel" ] || \ - [ "$CACLIENT" = "sfel" ] || [ "$CACLIENT" = "hipa" ] - then - if [ -z $FACILITY_TEMP ] - then - FACILITY_TEMP=$CACLIENT - CACLIENT_TEMP=$1 - fi - fi -fi - - - -if [ -z "$FACILITY" ] -then - FACILITY="sf" - echo "FACILITY = " $FACILITY - if [ -z $CACLIENT ] - then - CACLIENT=$CACLIENT_DEFAULT - fi -elif [ "$FACILITY" = "sls" ] || [ "$FACILITY" = "sls2" ] || \ - [ "$FACILITY" = "sf" ] || [ "$FACILITY" = "swissfel" ] || \ - [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "hipa" ] -then - echo "FACILITY = " $FACILITY -elif [ -n "$FACILITY_TEMP" ] -then - if [ "$FACILITY_TEMP" = "sls" ] || [ "$FACILITY_TEMP" = "sls2" ] || \ - [ "$FACILITY_TEMP" = "sf" ] || [ "$FACILITY_TEMP" = "swissfel" ] || \ - [ "$FACILITY_TEMP" = "sfel" ] || [ "$FACILITY_TEMP" = "hipa" ] - then - - - FACILITY=$FACILITY_TEMP - else - if [ -n "$2" ] - then - echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY - echo "***VALID VALUES ARE: sls sls2 sf hipa" - RETURN_FLAG=true - fi - echo "***OTHERWISE THE DEFAULT FACILITY IS:" $FACILITY_DEFAULT - FACILITY=$FACILITY_DEFAULT - fi -else - echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY - echo "***VALID VALUES ARE: sls sls2 sf hipa" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT FACILITY IS: " $FACILITY_DEFAULT - FACILITY=$FACILITY_DEFAULT -fi - -if [ -n "$CACLIENT" ] -then - if [ "$CACLIENT" = "matlab" ] || [ "$CACLIENT" = "python" ] || \ - [ "$CACLIENT" = "py310" ] || [ "$CACLIENT" = "py38" ] || \ - [ "$CACLIENT" = "py37" ] || [ "$CACLIENT" = "py35" ] || \ - [ "$CACLIENT" = "julia" ] || [ "$CACLIENT" = "cpp" ] || \ - [ "$CACLIENT" = "cc" ] - then - echo "CA TARGET = " $CACLIENT - else - if [ -n "$CACLIENT_TEMP" ] - then - if [ "$CACLIENT_TEMP" = "matlab" ] || [ "$CACLIENT_TEMP" = "python" ] || \ - [ "$CACLIENT_TEMP" = "py310" ] || [ "$CACLIENT_TEMP" = "py38" ] || \ - [ "$CACLIENT_TEMP" = "py37" ] || [ "$CACLIENT_TEMP" = "py35" ] || \ - [ "$CACLIENT_TEMP" = "julia" ] || [ "$CACLIENT_TEMP" = "cpp" ] || \ - [ "$CACLIENT_TEMP" = "cc" ] - then - CACLIENT=$CACLIENT_TEMP - else - echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT - echo "***VALID VALUES ARE: cpp matlab python" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT - CACLIENT=$CACLIENT_DEFAULT - fi - else - echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT - echo "***VALID VALUES ARE: cpp matlab python" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT - CACLIENT=$CACLIENT_DEFAULT - fi - fi -else - CACLIENT=$CACLIENT_DEFAULT -fi - - - -if [ $RETURN_ON_WRONG_INPUT = true ] ; then - if [ $RETURN_FLAG = true ] ; then - return 1 2>/dev/null - exit 1 - fi -fi - -echo "FACILITY SELECTED = " $FACILITY -echo "CA TARGET SELECTED = " $CACLIENT - -ENABLE_OPTIONS="--enable-boost-inc" - -if [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "swissfel" ] -then - FACILITY="sf" -fi - -if [ "$CACLIENT" = "python" ] || [ "$CACLIENT" = "julia" ] -then - CACLIENT="py37" -fi - - -if [ "$FACILITY" = "sls2" ] -then - ENABLE_OPTIONS+=" --enable-epics7" - CAFE_V+="-sls2" -else - ENABLE_OPTIONS+=" --enable-epics3" - if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] - then - CAFE_V+="-sf" - fi -fi - -if [ "$CACLIENT" = "py35" ] -then - ENABLE_OPTIONS+=" --enable-python35" - ENABLE_OPTIONS+=" --enable-qt4" - CAFE_V+="-py35" -elif [ "$CACLIENT" = "py37" ] -then - ENABLE_OPTIONS+=" --enable-python37" - ENABLE_OPTIONS+=" --enable-qt5" - CAFE_V+="-py37" -elif [ "$CACLIENT" = "py38" ] -then - ENABLE_OPTIONS+=" --enable-python38" - ENABLE_OPTIONS+=" --enable-qt5py38" - CAFE_V+="-py38" -elif [ "$CACLIENT" = "py310" ] -then - ENABLE_OPTIONS+=" --enable-python310" - #ENABLE_OPTIONS+=" --enable-qt5py310" - CAFE_V+="-py310" -else - ENABLE_OPTIONS+=" --enable-qt5" -fi - -if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] -then - #rm -f src/PyCafe.cpp - #ln -s PyCafe3.cpp src/PyCafe.cpp - ENABLE_OPTIONS+=" --enable-json" - ENABLE_OPTIONS+=" --enable-zeromq" - ENABLE_OPTIONS+=" --enable-curl" - ENABLE_OPTIONS+=" --enable-lz4" -#else - #rm -f src/PyCafe.cpp - #ln -s PyCafe_sls.cpp src/PyCafe.cpp -fi - -CAFE_V+="-gcc-"$GCC_VERSION - -echo "$CAFE_V" - -#echo 'EPICS BASE IS='$EPICS_BASE -#echo 'EPICS BASE DIR='${EPICS}/base-7.0.4.1 - -EB1=$(echo $EPICS_BASE | sed -e "s/[a-zA-Z]*-//g") -EBMAJ=$(echo $EB1 | sed -e "s/[[:punct:]].*//g") -EBMIN1=$(echo $EB1 | sed -e "s/^[[:digit:]]*[[:punct:]]//g") -EBMIN=$(echo $EBMIN1 | sed -e "s/[[:punct:]][[:digit:]]*//g") -EBPAT=$(echo $EB1 | sed -e "s/[[:digit:]]*[[:punct:]]//g") -echo EPICS_MAJOR=$EBMAJ -echo EPICS_MINOR=$EBMIN -echo EPICS_PATCH=$EBPAT -#echo $EBMIN1 - -export CAFE_EPICS_V_MAJOR=$EBMAJ -export CAFE_EPICS_V_MINOR=$EBMIN -export CAFE_EPICS_V_PATCH=$EBPAT - -#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" - -echo 'ENABLE_OPTIONS='$ENABLE_OPTIONS - -./configure \ - --prefix=/opt/gfa/cafe/cpp/${CAFE_V} \ - --libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${EPICS_HOST_ARCH} \ - ${ENABLE_OPTIONS} \ - --with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include \ - --with-epics3=${EPICS}/base \ - --with-python310=/ioc/python/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-qt5py310=/ioc/python/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-json=/opt/gfa/zmq/json/jsoncpp-src-0.6.0-rc2 \ - --with-zeromq=/opt/gfa/zmq/zeromq-4.2.3-gcc-6.3.0 \ - --with-curl=/opt/gfa/zmq/curl-7.55.1 \ - --with-lz4=/opt/gfa/zmq/lz4/lib \ - --with-epics7=${EPICS}/base-7.0.6 -unset CAFE_EPICS_V_PATCH -unset CAFE_EPICS_V_MINOR -unset CAFE_EPICS_V_MAJOR - -unset CAFE_HOST_FLAG_DARWIN - diff --git a/autogen_sfbd.sh b/autogen_sfbd.sh index 05ad184..91de740 100644 --- a/autogen_sfbd.sh +++ b/autogen_sfbd.sh @@ -4,7 +4,7 @@ # module unload gcc #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/10.4.0 ##rhel8 ### psi specific - end rm -f configure.ac @@ -24,8 +24,8 @@ automake --force --add-missing --copy #Used by ./configure #Assumes format ${EPICS}/base-3.14.12 #source cafeVersion-gcc-7.3.0 -CAFE_V="cafe-1.21.0" -EPICS_BASE='base-7.0.8' # +CAFE_V="cafe-1.22.0" +EPICS_BASE='base-7.0.9' # #For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH #Assume Linux but check if Darwin @@ -207,6 +207,9 @@ else if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] then CAFE_V+="-sf" + elif [ "$FACILITY" = "hipa" ] && [ "$CACLIENT" != "matlab" ] + then + CAFE_V+="-hipa" elif [ "$FACILITY" = "sls" ] && [ "$CACLIENT" != "matlab" ] then CAFE_V+="-epics3" @@ -243,11 +246,15 @@ then elif [ "$CACLIENT" = "py310" ] then ENABLE_OPTIONS+=" --enable-python310" - #ENABLE_OPTIONS+=" --enable-qt5py310" + ENABLE_OPTIONS+=" --enable-qt5py310" CAFE_V+="-py310" + elif [ "$CACLIENT" = "cpp" ] then - ENABLE_OPTIONS+=" --enable-qt5" + if [ "$FACILITY" != "hipa" ] + then + ENABLE_OPTIONS+=" --enable-qt5" + fi fi if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] @@ -312,10 +319,10 @@ echo 'ENABLE_OPTIONS============> '$ENABLE_OPTIONS --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=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2 \ - --with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0 \ - --with-curl=/sf/bd/deps/zmq/curl-7.55.1 \ - --with-lz4=/sf/bd/deps/zmq/lz4/lib \ + --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/${EPICS_BASE} unset CAFE_EPICS_V_PATCH unset CAFE_EPICS_V_MINOR diff --git a/config.log b/config.log index b446a62..41755c2 100644 --- a/config.log +++ b/config.log @@ -1,10 +1,10 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by CAFE configure 1.20.1, which was +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.21.0-gcc-10.4.0 --libdir=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64 --enable-boost-inc --enable-epics7 --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=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2 --with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0 --with-curl=/sf/bd/deps/zmq/curl-7.55.1 --with-lz4=/sf/bd/deps/zmq/lz4/lib --with-epics7=/usr/local/epics/base-7.0.8 + $ ./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 ## --------- ## ## Platform. ## @@ -12,9 +12,9 @@ generated by GNU Autoconf 2.69. Invocation command line was hostname = sls-lc8.psi.ch uname -m = x86_64 -uname -r = 4.18.0-553.5.1.el8_10.x86_64 +uname -r = 4.18.0-553.22.1.el8_10.x86_64 uname -s = Linux -uname -v = #1 SMP Tue May 21 03:13:04 EDT 2024 +uname -v = #1 SMP Wed Sep 11 18:02:00 EDT 2024 /usr/bin/uname -p = x86_64 /bin/uname -X = unknown @@ -27,18 +27,29 @@ uname -v = #1 SMP Tue May 21 03:13:04 EDT 2024 /usr/bin/oslevel = unknown /bin/universe = unknown -PATH: /opt/psi/Programming/gcc/10.4.0/bin -PATH: /opt/psi/Programming/matlab/2024a/bin +PATH: /opt/gfa/python-3.7/2018.12/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: /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/sbin -PATH: /usr/local/epics/base-7.0.8/bin/RHEL8-x86_64 +PATH: /usr/local/epics/base-7.0.9/bin/RHEL8-x86_64 PATH: /sls/bd/bin PATH: /sls/controls/bin PATH: /opt/puppetlabs/bin @@ -54,80 +65,86 @@ PATH: /afs/psi.ch/user/c/chrin/bin ## ----------- ## configure:2503: checking for a BSD-compatible install -configure:2571: result: /usr/bin/install -c +configure:2571: result: /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: /usr/bin/mkdir -p +configure:2827: result: /bin/mkdir -p configure:2834: checking for gawk -configure:2850: found /usr/bin/gawk +configure:2850: found /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: /opt/psi/Programming/gcc/10.4.0/bin/g++ --version >&5 -g++ ('PSI Environment Module') 10.4.0 -Copyright (C) 2020 Free Software Foundation, Inc. +configure:3198: g++ --version >&5 +g++ (GCC) 8.5.0 20210514 (Red Hat 8.5.0-28) +Copyright (C) 2018 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: /opt/psi/Programming/gcc/10.4.0/bin/g++ -v >&5 +configure:3198: g++ -v >&5 Using built-in specs. -COLLECT_GCC=/opt/psi/Programming/gcc/10.4.0/bin/g++ -COLLECT_LTO_WRAPPER=/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../libexec/gcc/x86_64-pc-linux-gnu/10.4.0/lto-wrapper -Target: x86_64-pc-linux-gnu -Configured with: /opt/psi/var/tmp/gsell/gcc-10.4.0/src/configure --prefix=/opt/psi/Programming/gcc/10.4.0 --enable-languages=c,c++,objc,obj-c++,lto,fortran,go --with-gmp=/opt/psi/Libraries/gmp/6.2.1 --with-mpfr=/opt/psi/Libraries/mpfr/4.1.0 --with-mpc=/opt/psi/Libraries/mpc/1.2.1 --enable-lto --disable-multilib --with-pkgversion=''\''PSI Environment Module'\''' --with-build-config=bootstrap-debug +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 Thread model: posix -Supported LTO compression algorithms: zlib -gcc version 10.4.0 ('PSI Environment Module') +gcc version 8.5.0 20210514 (Red Hat 8.5.0-28) (GCC) configure:3209: $? = 0 -configure:3198: /opt/psi/Programming/gcc/10.4.0/bin/g++ -V >&5 -g++: error: unrecognized command-line option '-V' +configure:3198: g++ -V >&5 +g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. configure:3209: $? = 1 -configure:3198: /opt/psi/Programming/gcc/10.4.0/bin/g++ -qversion >&5 -g++: error: unrecognized command-line option '-qversion'; did you mean '--version'? +configure:3198: 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: /opt/psi/Programming/gcc/10.4.0/bin/g++ conftest.cpp >&5 +configure:3251: 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: /opt/psi/Programming/gcc/10.4.0/bin/g++ -o conftest conftest.cpp >&5 +configure:3321: g++ -o conftest conftest.cpp >&5 configure:3325: $? = 0 configure:3347: result: configure:3369: checking whether we are cross compiling -configure:3377: /opt/psi/Programming/gcc/10.4.0/bin/g++ -o conftest conftest.cpp >&5 +configure:3377: 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: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c conftest.cpp >&5 +configure:3434: 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: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c conftest.cpp >&5 +configure:3482: g++ -c conftest.cpp >&5 configure:3482: $? = 0 configure:3491: result: yes -configure:3500: checking whether /opt/psi/Programming/gcc/10.4.0/bin/g++ accepts -g -configure:3520: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g conftest.cpp >&5 +configure:3500: checking whether g++ accepts -g +configure:3520: 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 /opt/psi/Programming/gcc/10.4.0/bin/g++ +configure:3649: checking dependency style of g++ configure:3760: result: gcc3 configure:3806: checking build system type configure:3820: result: x86_64-pc-linux-gnu @@ -136,72 +153,74 @@ 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:4017: result: /opt/psi/Programming/gcc/10.4.0/bin/gcc +configure:4006: found /bin/gcc +configure:4017: result: gcc configure:4246: checking for C compiler version -configure:4255: /opt/psi/Programming/gcc/10.4.0/bin/gcc --version >&5 -gcc ('PSI Environment Module') 10.4.0 -Copyright (C) 2020 Free Software Foundation, Inc. +configure:4255: gcc --version >&5 +gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-28) +Copyright (C) 2018 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: /opt/psi/Programming/gcc/10.4.0/bin/gcc -v >&5 +configure:4255: gcc -v >&5 Using built-in specs. -COLLECT_GCC=/opt/psi/Programming/gcc/10.4.0/bin/gcc -COLLECT_LTO_WRAPPER=/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../libexec/gcc/x86_64-pc-linux-gnu/10.4.0/lto-wrapper -Target: x86_64-pc-linux-gnu -Configured with: /opt/psi/var/tmp/gsell/gcc-10.4.0/src/configure --prefix=/opt/psi/Programming/gcc/10.4.0 --enable-languages=c,c++,objc,obj-c++,lto,fortran,go --with-gmp=/opt/psi/Libraries/gmp/6.2.1 --with-mpfr=/opt/psi/Libraries/mpfr/4.1.0 --with-mpc=/opt/psi/Libraries/mpc/1.2.1 --enable-lto --disable-multilib --with-pkgversion=''\''PSI Environment Module'\''' --with-build-config=bootstrap-debug +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 Thread model: posix -Supported LTO compression algorithms: zlib -gcc version 10.4.0 ('PSI Environment Module') +gcc version 8.5.0 20210514 (Red Hat 8.5.0-28) (GCC) configure:4266: $? = 0 -configure:4255: /opt/psi/Programming/gcc/10.4.0/bin/gcc -V >&5 -gcc: error: unrecognized command-line option '-V' +configure:4255: gcc -V >&5 +gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:4266: $? = 1 -configure:4255: /opt/psi/Programming/gcc/10.4.0/bin/gcc -qversion >&5 -gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'? +configure:4255: 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: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c conftest.c >&5 +configure:4289: gcc -c conftest.c >&5 configure:4289: $? = 0 configure:4298: result: yes -configure:4307: checking whether /opt/psi/Programming/gcc/10.4.0/bin/gcc accepts -g -configure:4327: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g conftest.c >&5 +configure:4307: checking whether gcc accepts -g +configure:4327: gcc -c -g conftest.c >&5 configure:4327: $? = 0 configure:4368: result: yes -configure:4385: checking for /opt/psi/Programming/gcc/10.4.0/bin/gcc option to accept ISO C89 -configure:4448: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:4385: checking for gcc option to accept ISO C89 +configure:4448: gcc -c -g -O2 conftest.c >&5 configure:4448: $? = 0 configure:4461: result: none needed -configure:4486: checking whether /opt/psi/Programming/gcc/10.4.0/bin/gcc understands -c and -o together -configure:4508: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c conftest.c -o conftest2.o +configure:4486: checking whether gcc understands -c and -o together +configure:4508: gcc -c conftest.c -o conftest2.o configure:4511: $? = 0 -configure:4508: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c conftest.c -o conftest2.o +configure:4508: gcc -c conftest.c -o conftest2.o configure:4511: $? = 0 configure:4523: result: yes -configure:4542: checking dependency style of /opt/psi/Programming/gcc/10.4.0/bin/gcc +configure:4542: checking dependency style of gcc configure:4653: result: gcc3 configure:4668: checking for a sed that does not truncate output -configure:4732: result: /usr/bin/sed +configure:4732: result: /bin/sed configure:4750: checking for grep that handles long lines and -e -configure:4808: result: /usr/bin/grep +configure:4808: result: /bin/grep configure:4813: checking for egrep -configure:4875: result: /usr/bin/grep -E +configure:4875: result: /bin/grep -E configure:4880: checking for fgrep -configure:4942: result: /usr/bin/grep -F -configure:4977: checking for ld used by /opt/psi/Programming/gcc/10.4.0/bin/gcc -configure:5044: result: /usr/bin/ld -configure:5051: checking if the linker (/usr/bin/ld) is GNU ld +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:5066: result: yes configure:5078: checking for BSD- or MS-compatible name lister (nm) -configure:5132: result: /usr/bin/nm -B -configure:5262: checking the name lister (/usr/bin/nm -B) interface -configure:5269: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g -O2 conftest.cpp >&5 -configure:5272: /usr/bin/nm -B "conftest.o" +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:5275: output 0000000000000000 B some_variable configure:5282: result: BSD nm @@ -213,10 +232,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 /usr/bin/ld option to reload object files +configure:5550: checking for /bin/ld option to reload object files configure:5557: result: -r configure:5631: checking for objdump -configure:5647: found /usr/bin/objdump +configure:5647: found /bin/objdump configure:5658: result: objdump configure:5690: checking how to recognize dependent libraries configure:5890: result: pass_all @@ -225,10 +244,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 /usr/bin/ar +configure:6139: found /bin/ar configure:6150: result: ar configure:6187: checking for archiver @FILE support -configure:6204: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g -O2 conftest.cpp >&5 +configure:6204: g++ -c -g -O2 conftest.cpp >&5 configure:6204: $? = 0 configure:6207: ar cru libconftest.a @conftest.lst >&5 configure:6210: $? = 0 @@ -237,26 +256,26 @@ ar: conftest.o: No such file or directory configure:6218: $? = 1 configure:6230: result: @ configure:6288: checking for strip -configure:6304: found /usr/bin/strip +configure:6304: found /bin/strip configure:6315: result: strip configure:6387: checking for ranlib -configure:6403: found /usr/bin/ranlib +configure:6403: found /bin/ranlib configure:6414: result: ranlib -configure:6516: checking command to parse /usr/bin/nm -B output from /opt/psi/Programming/gcc/10.4.0/bin/gcc object -configure:6669: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g -O2 conftest.cpp >&5 +configure:6516: checking command to parse /bin/nm -B output from gcc object +configure:6669: g++ -c -g -O2 conftest.cpp >&5 configure:6672: $? = 0 -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: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:6679: $? = 0 -configure:6745: /opt/psi/Programming/gcc/10.4.0/bin/g++ -o conftest -g -O2 conftest.cpp conftstm.o >&5 +configure:6745: 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: /usr/bin/dd +configure:6908: result: /bin/dd configure:6912: checking how to truncate binary pipes -configure:6927: result: /usr/bin/dd bs=4096 count=1 -configure:7064: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g -O2 conftest.cpp >&5 +configure:6927: result: /bin/dd bs=4096 count=1 +configure:7064: g++ -c -g -O2 conftest.cpp >&5 configure:7067: $? = 0 configure:7257: checking for mt configure:7287: result: no @@ -264,157 +283,157 @@ 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: /opt/psi/Programming/gcc/10.4.0/bin/gcc -E conftest.c +configure:8029: gcc -E conftest.c configure:8029: $? = 0 -configure:8043: /opt/psi/Programming/gcc/10.4.0/bin/gcc -E conftest.c +configure:8043: gcc -E conftest.c conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory - 11 | #include - | ^~~~~~~~~~~~~~~~~~ + #include + ^~~~~~~~~~~~~~~~~~ compilation terminated. configure:8043: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "CAFE" | #define PACKAGE_TARNAME "cafe" -| #define PACKAGE_VERSION "1.20.1" -| #define PACKAGE_STRING "CAFE 1.20.1" +| #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.20.1" +| #define VERSION "1.22.0" | /* end confdefs.h. */ | #include -configure:8068: result: /opt/psi/Programming/gcc/10.4.0/bin/gcc -E -configure:8088: /opt/psi/Programming/gcc/10.4.0/bin/gcc -E conftest.c +configure:8068: result: gcc -E +configure:8088: gcc -E conftest.c configure:8088: $? = 0 -configure:8102: /opt/psi/Programming/gcc/10.4.0/bin/gcc -E conftest.c +configure:8102: gcc -E conftest.c conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory - 11 | #include - | ^~~~~~~~~~~~~~~~~~ + #include + ^~~~~~~~~~~~~~~~~~ compilation terminated. configure:8102: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "CAFE" | #define PACKAGE_TARNAME "cafe" -| #define PACKAGE_VERSION "1.20.1" -| #define PACKAGE_STRING "CAFE 1.20.1" +| #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.20.1" +| #define VERSION "1.22.0" | /* end confdefs.h. */ | #include configure:8131: checking for ANSI C header files -configure:8151: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8151: gcc -c -g -O2 conftest.c >&5 configure:8151: $? = 0 -configure:8224: /opt/psi/Programming/gcc/10.4.0/bin/gcc -o conftest -g -O2 conftest.c >&5 +configure:8224: 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: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for sys/stat.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for stdlib.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for string.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for memory.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for strings.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for inttypes.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for stdint.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8248: checking for unistd.h -configure:8248: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8248: gcc -c -g -O2 conftest.c >&5 configure:8248: $? = 0 configure:8248: result: yes configure:8262: checking for dlfcn.h -configure:8262: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:8262: 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 /opt/psi/Programming/gcc/10.4.0/bin/gcc supports -fno-rtti -fno-exceptions -configure:8825: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 -cc1: warning: command-line option '-fno-rtti' is valid for C++/D/ObjC++ but not for C +configure:8807: checking if gcc supports -fno-rtti -fno-exceptions +configure:8825: 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 /opt/psi/Programming/gcc/10.4.0/bin/gcc option to produce PIC +configure:9200: checking for gcc option to produce PIC configure:9207: result: -fPIC -DPIC -configure:9215: checking if /opt/psi/Programming/gcc/10.4.0/bin/gcc PIC flag -fPIC -DPIC works -configure:9233: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 +configure:9215: checking if gcc PIC flag -fPIC -DPIC works +configure:9233: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:9237: $? = 0 configure:9250: result: yes -configure:9279: checking if /opt/psi/Programming/gcc/10.4.0/bin/gcc static flag -static works +configure:9279: checking if gcc static flag -static works configure:9307: result: no -configure:9322: checking if /opt/psi/Programming/gcc/10.4.0/bin/gcc supports -c -o file.o -configure:9343: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 +configure:9322: checking if gcc supports -c -o file.o +configure:9343: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:9347: $? = 0 configure:9369: result: yes -configure:9377: checking if /opt/psi/Programming/gcc/10.4.0/bin/gcc supports -c -o file.o +configure:9377: checking if gcc supports -c -o file.o configure:9424: result: yes -configure:9457: checking whether the /opt/psi/Programming/gcc/10.4.0/bin/gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:9457: checking whether the gcc linker (/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: /opt/psi/Programming/gcc/10.4.0/bin/gcc -c -g -O2 conftest.c >&5 +configure:10761: gcc -c -g -O2 conftest.c >&5 configure:10764: $? = 0 -configure:10779: /opt/psi/Programming/gcc/10.4.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:10779: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:10782: $? = 0 configure:10796: result: no configure:10956: checking dynamic linker characteristics -configure:11537: /opt/psi/Programming/gcc/10.4.0/bin/gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 +configure:11537: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:11537: $? = 0 -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/10.4.0/bin/g++ -E conftest.cpp -configure:12599: $? = 0 -configure:12613: /opt/psi/Programming/gcc/10.4.0/bin/g++ -E conftest.cpp +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 conftest.cpp:23:10: fatal error: ac_nonexistent.h: No such file or directory - 23 | #include - | ^~~~~~~~~~~~~~~~~~ + #include + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:12613: $? = 1 +configure:12610: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "CAFE" | #define PACKAGE_TARNAME "cafe" -| #define PACKAGE_VERSION "1.20.1" -| #define PACKAGE_STRING "CAFE 1.20.1" +| #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.20.1" +| #define VERSION "1.22.0" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 @@ -429,25 +448,25 @@ configure: failed program was: | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include -configure:12638: result: /opt/psi/Programming/gcc/10.4.0/bin/g++ -E -configure:12658: /opt/psi/Programming/gcc/10.4.0/bin/g++ -E conftest.cpp -configure:12658: $? = 0 -configure:12672: /opt/psi/Programming/gcc/10.4.0/bin/g++ -E conftest.cpp +configure:12635: result: g++ -E +configure:12655: g++ -E conftest.cpp +configure:12655: $? = 0 +configure:12669: g++ -E conftest.cpp conftest.cpp:23:10: fatal error: ac_nonexistent.h: No such file or directory - 23 | #include - | ^~~~~~~~~~~~~~~~~~ + #include + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:12672: $? = 1 +configure:12669: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "CAFE" | #define PACKAGE_TARNAME "cafe" -| #define PACKAGE_VERSION "1.20.1" -| #define PACKAGE_STRING "CAFE 1.20.1" +| #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.20.1" +| #define VERSION "1.22.0" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 @@ -462,107 +481,117 @@ configure: failed program was: | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include -configure:12834: checking for ld used by /opt/psi/Programming/gcc/10.4.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/10.4.0/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:14051: result: yes -configure:14087: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g -O2 conftest.cpp >&5 -configure:14090: $? = 0 -configure:14571: checking for /opt/psi/Programming/gcc/10.4.0/bin/g++ option to produce PIC -configure:14578: result: -fPIC -DPIC -configure:14586: checking if /opt/psi/Programming/gcc/10.4.0/bin/g++ PIC flag -fPIC -DPIC works -configure:14604: /opt/psi/Programming/gcc/10.4.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/10.4.0/bin/g++ static flag -static works -configure:14672: result: no -configure:14684: checking if /opt/psi/Programming/gcc/10.4.0/bin/g++ supports -c -o file.o -configure:14705: /opt/psi/Programming/gcc/10.4.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/10.4.0/bin/g++ supports -c -o file.o -configure:14783: result: yes -configure:14813: checking whether the /opt/psi/Programming/gcc/10.4.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/10.4.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc conftest.cpp >&5 -configure:16057: $? = 0 -configure:16057: result: yes -configure:16057: checking cadef.h presence -configure:16057: /opt/psi/Programming/gcc/10.4.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc conftest.cpp -configure:16057: $? = 0 -configure:16057: result: yes -configure:16057: checking for cadef.h -configure:16057: result: yes -configure:16076: checking epicsTypes.h usability -configure:16076: /opt/psi/Programming/gcc/10.4.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc conftest.cpp >&5 -configure:16076: $? = 0 -configure:16076: result: yes -configure:16076: checking epicsTypes.h presence -configure:16076: /opt/psi/Programming/gcc/10.4.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc conftest.cpp -configure:16076: $? = 0 -configure:16076: result: yes -configure:16076: checking for epicsTypes.h -configure:16076: result: yes -configure:16093: checking for main in -lca -configure:16112: /opt/psi/Programming/gcc/10.4.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/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/10.4.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/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/10.4.0/bin/g++ -o conftest -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/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/10.4.0/bin/g++ -c -g -O2 -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/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/10.4.0/bin/g++ -E -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/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: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.20.1, 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:1168: creating makefile -config.status:1168: creating src/makefile -config.status:1168: creating include/makefile -config.status:1168: creating ./include/config.h -config.status:1397: executing depfiles commands -config.status:1474: cd src && sed -e '/# am--include-marker/d' makefile | make -f - am--depfiles -make: Nothing to be done for 'am--depfiles'. -config.status:1479: $? = 0 -config.status:1397: executing libtool commands +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 ## ---------------- ## ## Cache variables. ## @@ -573,8 +602,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=set -ac_cv_env_CC_value=/opt/psi/Programming/gcc/10.4.0/bin/gcc +ac_cv_env_CC_set= +ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= @@ -585,8 +614,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=set -ac_cv_env_CXX_value=/opt/psi/Programming/gcc/10.4.0/bin/g++ +ac_cv_env_CXX_set= +ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= @@ -599,12 +628,14 @@ ac_cv_env_host_alias_set= 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_dlfcn_h=yes ac_cv_header_epicsTypes_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_multi_index_container_hpp=yes +ac_cv_header_qxml_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes @@ -615,21 +646,25 @@ 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_ca_main=yes ac_cv_lib_dl_main=yes +ac_cv_lib_python3_7m_main=yes ac_cv_objext=o -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_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_prog_AWK=gawk -ac_cv_prog_CPP='/opt/psi/Programming/gcc/10.4.0/bin/gcc -E' -ac_cv_prog_CXXCPP='/opt/psi/Programming/gcc/10.4.0/bin/g++ -E' +ac_cv_prog_CPP='gcc -E' +ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_ac_ct_AR=ar -ac_cv_prog_ac_ct_CC=/opt/psi/Programming/gcc/10.4.0/bin/gcc +ac_cv_prog_ac_ct_CC=gcc +ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip @@ -649,9 +684,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=/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_LD=/bin/ld +lt_cv_path_LDCXX='/bin/ld -m elf_x86_64' +lt_cv_path_NM='/bin/nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes @@ -674,36 +709,36 @@ 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='/usr/bin/dd bs=4096 count=1' +lt_cv_truncate_bin='/bin/dd bs=4096 count=1' ## ----------------- ## ## Output variables. ## ## ----------------- ## -ACLOCAL='${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16' +ACLOCAL='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing aclocal-1.16' AMDEPBACKSLASH='\' 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.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/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.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_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='1' -AM_LDFLAGS=' -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64' +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_V='$(V)' AR='ar' -AUTOCONF='${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf' -AUTOHEADER='${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader' -AUTOMAKE='${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16' +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='/opt/psi/Programming/gcc/10.4.0/bin/gcc' +CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' -CPP='/opt/psi/Programming/gcc/10.4.0/bin/gcc -E' -CPPFLAGS=' -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include' -CXX='/opt/psi/Programming/gcc/10.4.0/bin/g++' -CXXCPP='/opt/psi/Programming/gcc/10.4.0/bin/g++ -E' +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' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' @@ -715,33 +750,33 @@ DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' -EGREP='/usr/bin/grep -E' +EGREP='/bin/grep -E' EXEEXT='' -FGREP='/usr/bin/grep -F' -GREP='/usr/bin/grep' -HAVE_PYCAFE_EXT__FALSE='' -HAVE_PYCAFE_EXT__TRUE='#' -HAVE_PYTHON__FALSE='' -HAVE_PYTHON__TRUE='#' +FGREP='/bin/grep -F' +GREP='/bin/grep' +HAVE_PYCAFE_EXT__FALSE='#' +HAVE_PYCAFE_EXT__TRUE='' +HAVE_PYTHON__FALSE='#' +HAVE_PYTHON__TRUE='' HAVE_ZEROMQ__FALSE='' HAVE_ZEROMQ__TRUE='#' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' -LD='/usr/bin/ld -m elf_x86_64' -LDFLAGS=' -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64' +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 ' LIBOBJS='' -LIBS='' +LIBS='-lQt5Xml -lQt5Core -lpython3.7m ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' LTLIBOBJS='' LT_SYS_LIBRARY_PATH='' -MAKEINFO='${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo' +MAKEINFO='${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo' MANIFEST_TOOL=':' -MKDIR_P='/usr/bin/mkdir -p' -NM='/usr/bin/nm -B' +MKDIR_P='/bin/mkdir -p' +NM='/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' @@ -750,20 +785,20 @@ OTOOL='' PACKAGE='cafe' PACKAGE_BUGREPORT='Bug reports to: jan.chrin@psi.ch' PACKAGE_NAME='CAFE' -PACKAGE_STRING='CAFE 1.20.1' +PACKAGE_STRING='CAFE 1.22.0' PACKAGE_TARNAME='cafe' PACKAGE_URL='' -PACKAGE_VERSION='1.20.1' +PACKAGE_VERSION='1.22.0' PATH_SEPARATOR=':' RANLIB='ranlib' -SED='/usr/bin/sed' +SED='/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' -VERSION='1.20.1' +VERSION='1.22.0' ac_ct_AR='ar' -ac_ct_CC='/opt/psi/Programming/gcc/10.4.0/bin/gcc' -ac_ct_CXX='' +ac_ct_CC='gcc' +ac_ct_CXX='g++' ac_ct_DUMPBIN='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' @@ -797,8 +832,8 @@ host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' -install_sh='${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh' -libdir='/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64' +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' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' @@ -806,7 +841,7 @@ mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' -prefix='/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0' +prefix='/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' @@ -821,12 +856,12 @@ target_alias='' /* confdefs.h */ #define PACKAGE_NAME "CAFE" #define PACKAGE_TARNAME "cafe" -#define PACKAGE_VERSION "1.20.1" -#define PACKAGE_STRING "CAFE 1.20.1" +#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.20.1" +#define VERSION "1.22.0" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 @@ -842,11 +877,66 @@ target_alias='' #define HAVE_LINUX 1 #define HAVE_CADEF_H 1 #define HAVE_EPICSTYPES_H 1 -#define HAVE_EPICS 7.0.8 +#define HAVE_EPICS 7.4.1 #define EPICS_MAJOR 7 -#define EPICS_MINOR 0 -#define EPICS_PATCH 8 +#define EPICS_MINOR 4 +#define EPICS_PATCH 1 #define HAVE_MULTI_INDEX_CONTAINER_HPP 1 #define HAVE_BOOST 1 +#define HAVE_PYTHON_H 1 +#define HAVE_LIBPYTHON3_7M 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_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 63c1f76..90cdc3d 100755 --- a/config.status +++ b/config.status @@ -380,7 +380,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by CAFE $as_me 1.20.1, which was +This file was extended by CAFE $as_me 1.22.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -427,9 +427,9 @@ $config_commands Report bugs to ." -ac_cs_config="'--prefix=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--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=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/sf/bd/deps/zmq/curl-7.55.1' '--with-lz4=/sf/bd/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.8' 'CXX=/opt/psi/Programming/gcc/10.4.0/bin/g++' 'CC=/opt/psi/Programming/gcc/10.4.0/bin/gcc'" +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_version="\ -CAFE config.status 1.20.1 +CAFE config.status 1.22.0 configured by ./configure, generated by GNU Autoconf 2.69, with options \"$ac_cs_config\" @@ -437,10 +437,10 @@ Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/afs/psi.ch/project/cafe/gitlab/CAFE/cpp' +ac_pwd='/afs/psi.ch/project/cafe/gitea/CAFE/cpp' srcdir='.' -INSTALL='/usr/bin/install -c' -MKDIR_P='/usr/bin/mkdir -p' +INSTALL='/bin/install -c' +MKDIR_P='/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.21.0-gcc-10.4.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--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=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/sf/bd/deps/zmq/curl-7.55.1' '--with-lz4=/sf/bd/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.8' 'CXX=/opt/psi/Programming/gcc/10.4.0/bin/g++' 'CC=/opt/psi/Programming/gcc/10.4.0/bin/gcc' $ac_configure_extra_args --no-create --no-recursion + 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 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='/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' +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' 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='/opt/psi/Programming/gcc/10.4.0/bin/gcc' +CC='gcc' CFLAGS='-g -O2' -compiler='/opt/psi/Programming/gcc/10.4.0/bin/g++' +compiler='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='/usr/bin/dd bs=4096 count=1' +lt_cv_truncate_bin='/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='/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib /lib /usr/lib ' -configure_time_dlsearch_path='/lib64 /usr/lib64 /lib /usr/lib /usr/lib64/atlas /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 /usr/lib64/wine/ ' +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/ ' 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='/usr/bin/ld -m elf_x86_64' +LD_CXX='/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='/opt/psi/Programming/gcc/10.4.0/bin/g++' +compiler_CXX='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='/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64/../lib64 /opt/psi/Programming/gcc/10.4.0/lib/../lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/10.4.0/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../..' -predep_objects_CXX='/lib/../lib64/crti.o /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtbeginS.o' -postdep_objects_CXX='/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtendS.o /lib/../lib64/crtn.o' +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' predeps_CXX='' postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s' -compiler_lib_search_path_CXX='-L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/10.4.0/lib64/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib/../lib64 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib64 -L/opt/psi/Programming/gcc/10.4.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../..' +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/../../..' -LTCC='/opt/psi/Programming/gcc/10.4.0/bin/gcc' +LTCC='gcc' LTCFLAGS='-g -O2' -compiler='/opt/psi/Programming/gcc/10.4.0/bin/gcc' +compiler='gcc' # A function that is used when there is no print builtin or printf. func_fallback_echo () @@ -788,7 +788,7 @@ fi PACKAGE='cafe' - VERSION='1.20.1' + VERSION='1.22.0' RM='rm -f' ofile='libtool' @@ -879,16 +879,19 @@ S["LTLIBOBJS"]="" S["LIBOBJS"]="" S["HAVE_ZEROMQ__FALSE"]="" S["HAVE_ZEROMQ__TRUE"]="#" -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.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64" -S["AM_CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/ba"\ -"se-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include" +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_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["CAFE_CPPFLAGS"]="-I$(top_srcdir)/include " -S["CXXCPP"]="/opt/psi/Programming/gcc/10.4.0/bin/g++ -E" -S["CPP"]="/opt/psi/Programming/gcc/10.4.0/bin/gcc -E" +S["CXXCPP"]="g++ -E" +S["CPP"]="gcc -E" S["LT_SYS_LIBRARY_PATH"]="" S["OTOOL64"]="" S["OTOOL"]="" @@ -902,20 +905,20 @@ S["AR"]="ar" S["DLLTOOL"]="false" S["OBJDUMP"]="objdump" S["LN_S"]="ln -s" -S["NM"]="/usr/bin/nm -B" +S["NM"]="/bin/nm -B" S["ac_ct_DUMPBIN"]="" S["DUMPBIN"]="" -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["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["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" -S["ac_ct_CC"]="/opt/psi/Programming/gcc/10.4.0/bin/gcc" +S["ac_ct_CC"]="gcc" S["CFLAGS"]="-g -O2" -S["CC"]="/opt/psi/Programming/gcc/10.4.0/bin/gcc" +S["CC"]="gcc" S["host_os"]="linux-gnu" S["host_vendor"]="pc" S["host_cpu"]="x86_64" @@ -936,12 +939,15 @@ S["am__include"]="include" S["DEPDIR"]=".deps" S["OBJEXT"]="o" S["EXEEXT"]="" -S["ac_ct_CXX"]="" -S["CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/ba"\ -"se-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include" -S["LDFLAGS"]=" -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64" +S["ac_ct_CXX"]="g++" +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 " S["CXXFLAGS"]="-g -O2" -S["CXX"]="/opt/psi/Programming/gcc/10.4.0/bin/g++" +S["CXX"]="g++" S["AM_BACKSLASH"]="\\" S["AM_DEFAULT_VERBOSITY"]="1" S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)" @@ -953,16 +959,16 @@ S["am__leading_dot"]="." S["SET_MAKE"]="" S["AWK"]="gawk" S["mkdir_p"]="$(MKDIR_P)" -S["MKDIR_P"]="/usr/bin/mkdir -p" +S["MKDIR_P"]="/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh" -S["MAKEINFO"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader" -S["AUTOMAKE"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf" -S["ACLOCAL"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16" -S["VERSION"]="1.20.1" +S["install_sh"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/install-sh" +S["MAKEINFO"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoheader" +S["AUTOMAKE"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing autoconf" +S["ACLOCAL"]="${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing aclocal-1.16" +S["VERSION"]="1.22.0" S["PACKAGE"]="cafe" S["CYGPATH_W"]="echo" S["am__isrc"]="" @@ -972,14 +978,14 @@ S["INSTALL_PROGRAM"]="${INSTALL}" S["target_alias"]="" S["host_alias"]="" S["build_alias"]="" -S["LIBS"]="" +S["LIBS"]="-lQt5Xml -lQt5Core -lpython3.7m " 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.21.0-gcc-10.4.0/lib/RHEL8-x86_64" +S["libdir"]="/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-/lib/RHEL8-x86_64" S["psdir"]="${docdir}" S["pdfdir"]="${docdir}" S["dvidir"]="${docdir}" @@ -997,12 +1003,12 @@ 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.21.0-gcc-10.4.0" +S["prefix"]="/opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc-" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="Bug reports to: jan.chrin@psi.ch" -S["PACKAGE_STRING"]="CAFE 1.20.1" -S["PACKAGE_VERSION"]="1.20.1" +S["PACKAGE_STRING"]="CAFE 1.22.0" +S["PACKAGE_VERSION"]="1.22.0" S["PACKAGE_TARNAME"]="cafe" S["PACKAGE_NAME"]="CAFE" S["PATH_SEPARATOR"]=":" @@ -1051,12 +1057,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"CAFE\"" D["PACKAGE_TARNAME"]=" \"cafe\"" -D["PACKAGE_VERSION"]=" \"1.20.1\"" -D["PACKAGE_STRING"]=" \"CAFE 1.20.1\"" +D["PACKAGE_VERSION"]=" \"1.22.0\"" +D["PACKAGE_STRING"]=" \"CAFE 1.22.0\"" D["PACKAGE_BUGREPORT"]=" \"Bug reports to: jan.chrin@psi.ch\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"cafe\"" -D["VERSION"]=" \"1.20.1\"" +D["VERSION"]=" \"1.22.0\"" D["STDC_HEADERS"]=" 1" D["HAVE_SYS_TYPES_H"]=" 1" D["HAVE_SYS_STAT_H"]=" 1" @@ -1072,12 +1078,22 @@ D["LT_OBJDIR"]=" \".libs/\"" D["HAVE_LINUX"]=" 1" D["HAVE_CADEF_H"]=" 1" D["HAVE_EPICSTYPES_H"]=" 1" -D["HAVE_EPICS"]=" 7.0.8" +D["HAVE_EPICS"]=" 7.4.1" D["EPICS_MAJOR"]=" 7" -D["EPICS_MINOR"]=" 0" -D["EPICS_PATCH"]=" 8" +D["EPICS_MINOR"]=" 4" +D["EPICS_PATCH"]=" 1" D["HAVE_MULTI_INDEX_CONTAINER_HPP"]=" 1" D["HAVE_BOOST"]=" 1" +D["HAVE_PYTHON_H"]=" 1" +D["HAVE_LIBPYTHON3_7M"]=" 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_QT"]=" 1" +D["HAVE_LIBQTXML"]=" 1" +D["QT_NO_VERSION_TAGGING"]=" 1" for (key in D) D_is_set[key] = 1 FS = "" } diff --git a/configurePSI.ac b/configurePSI.ac index e376832..469042e 100644 --- a/configurePSI.ac +++ b/configurePSI.ac @@ -9,7 +9,7 @@ # Standard macros AC_PREREQ(2.63) AC_COPYRIGHT([CAFE, Jan Chrin, PSI, 2010-2023]) -AC_INIT([CAFE], [1.20.1], [Bug reports to: jan.chrin@psi.ch]) +AC_INIT([CAFE], [1.22.0], [Bug reports to: jan.chrin@psi.ch]) AC_CONFIG_AUX_DIR(./) diff --git a/include/config.h b/include/config.h index 839782c..3803ca7 100644 --- a/include/config.h +++ b/include/config.h @@ -5,10 +5,10 @@ #define EPICS_MAJOR 7 /* epics minor release */ -#define EPICS_MINOR 0 +#define EPICS_MINOR 4 /* epics patch release */ -#define EPICS_PATCH 8 +#define EPICS_PATCH 1 /* Availability of boost */ #define HAVE_BOOST 1 @@ -29,7 +29,7 @@ #define HAVE_DLFCN_H 1 /* epics version */ -#define HAVE_EPICS 7.0.8 +#define HAVE_EPICS 7.4.1 /* Define to 1 if you have the header file. */ #define HAVE_EPICSTYPES_H 1 @@ -66,22 +66,22 @@ /* #undef HAVE_LIBPYTHON3_5M */ /* Define to 1 if you have the `python3.7m' library (-lpython3.7m). */ -/* #undef HAVE_LIBPYTHON3_7M */ +#define HAVE_LIBPYTHON3_7M 1 /* 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). */ -/* #undef HAVE_LIBQT5CORE */ +#define HAVE_LIBQT5CORE 1 /* Define to 1 if you have the `Qt5Xml' library (-lQt5Xml). */ -/* #undef HAVE_LIBQT5XML */ +#define HAVE_LIBQT5XML 1 /* Define to 1 if you have the `QtCore' library (-lQtCore). */ /* #undef HAVE_LIBQTCORE */ /* Availability of Qt version 5 confirmed */ -/* #undef HAVE_LIBQTXML */ +#define HAVE_LIBQTXML 1 /* Define to 1 if you have the `zmq' library (-lzmq). */ /* #undef HAVE_LIBZMQ */ @@ -102,19 +102,19 @@ #define HAVE_MULTI_INDEX_CONTAINER_HPP 1 /* pycafe extern C */ -/* #undef HAVE_PYCAFE_EXT */ +#define HAVE_PYCAFE_EXT 1 /* Availability of python */ -/* #undef HAVE_PYTHON */ +#define HAVE_PYTHON 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_PYTHON_H */ +#define HAVE_PYTHON_H 1 /* Availability of Qt version 5 confirmed */ -/* #undef HAVE_QT */ +#define HAVE_QT 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_QXML_H */ +#define HAVE_QXML_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STDINT_H 1 @@ -156,7 +156,7 @@ #define PACKAGE_NAME "CAFE" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "CAFE 1.20.1" +#define PACKAGE_STRING "CAFE 1.22.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "cafe" @@ -165,13 +165,13 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.20.1" +#define PACKAGE_VERSION "1.22.0" /* Availability of Qt version 5 confirmed */ -/* #undef QT_NO_VERSION_TAGGING */ +#define QT_NO_VERSION_TAGGING 1 /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Version number of package */ -#define VERSION "1.20.1" +#define VERSION "1.22.0" diff --git a/include/makefile b/include/makefile index c860b24..cc9e825 100644 --- a/include/makefile +++ b/include/makefile @@ -96,8 +96,8 @@ host_triplet = x86_64-pc-linux-gnu #if HAVE_PYTHON_ #include_HEADERS += PyCafe_api.h #endif -#am__append_2 = PyCafe.h -am__append_3 = PyCafe_api.h +am__append_2 = PyCafe.h +#am__append_3 = PyCafe_api.h subdir = include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ @@ -197,24 +197,24 @@ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16 +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.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/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.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_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 +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 AR = ar -AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf -AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader -AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16 +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 = /opt/psi/Programming/gcc/10.4.0/bin/gcc +CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -CPP = /opt/psi/Programming/gcc/10.4.0/bin/gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -CXX = /opt/psi/Programming/gcc/10.4.0/bin/g++ -CXXCPP = /opt/psi/Programming/gcc/10.4.0/bin/g++ -E +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 CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo @@ -226,28 +226,28 @@ DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = -EGREP = /usr/bin/grep -E +EGREP = /bin/grep -E EXEEXT = -FGREP = /usr/bin/grep -F -GREP = /usr/bin/grep -INSTALL = /usr/bin/install -c +FGREP = /bin/grep -F +GREP = /bin/grep +INSTALL = /bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 +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 LIBOBJS = -LIBS = +LIBS = -lQt5Xml -lQt5Core -lpython3.7m LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s LTLIBOBJS = LT_SYS_LIBRARY_PATH = -MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo +MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -NM = /usr/bin/nm -B +MKDIR_P = /bin/mkdir -p +NM = /bin/nm -B NMEDIT = OBJDUMP = objdump OBJEXT = o @@ -256,24 +256,24 @@ OTOOL64 = PACKAGE = cafe PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch PACKAGE_NAME = CAFE -PACKAGE_STRING = CAFE 1.20.1 +PACKAGE_STRING = CAFE 1.22.0 PACKAGE_TARNAME = cafe PACKAGE_URL = -PACKAGE_VERSION = 1.20.1 +PACKAGE_VERSION = 1.22.0 PATH_SEPARATOR = : RANLIB = ranlib -SED = /usr/bin/sed +SED = /bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip -VERSION = 1.20.1 -abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/include -abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/include -abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp +VERSION = 1.22.0 +abs_builddir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp/include +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 = /opt/psi/Programming/gcc/10.4.0/bin/gcc -ac_ct_CXX = +ac_ct_CC = gcc +ac_ct_CXX = g++ ac_ct_DUMPBIN = am__include = include am__leading_dot = . @@ -300,8 +300,8 @@ host_vendor = pc htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info -install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64 +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 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.21.0-gcc-10.4.0 +prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin diff --git a/libtool b/libtool index a5492c2..6dbb5f1 100755 --- a/libtool +++ b/libtool @@ -1,5 +1,5 @@ #! /bin/sh -# Generated automatically by config.status (cafe) 1.20.1 +# Generated automatically by config.status (cafe) 1.22.0 # Libtool was configured on host sls-lc8.psi.ch: # NOTE: Changes made to this file will be lost: look at ltmain.sh. @@ -76,22 +76,22 @@ build=x86_64-pc-linux-gnu build_os=linux-gnu # A sed program that does not truncate output. -SED="/usr/bin/sed" +SED="/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="/usr/bin/grep" +GREP="/bin/grep" # An ERE matcher. -EGREP="/usr/bin/grep -E" +EGREP="/bin/grep -E" # A literal string matcher. -FGREP="/usr/bin/grep -F" +FGREP="/bin/grep -F" # A BSD- or MS-compatible name lister. -NM="/usr/bin/nm -B" +NM="/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="/opt/psi/Programming/gcc/10.4.0/bin/gcc" +LTCC="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="/usr/bin/dd bs=4096 count=1" +lt_truncate_bin="/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="/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib /lib /usr/lib " +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 " # Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib /usr/lib64/atlas /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 /usr/lib64/wine/ " +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/ " # 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="/usr/bin/ld -m elf_x86_64" +LD="/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="/opt/psi/Programming/gcc/10.4.0/bin/gcc" +CC="gcc" # Is the compiler the GNU compiler? with_gcc=yes @@ -7732,6 +7732,11 @@ func_mode_link () arg=$func_stripname_result ;; + -Wl,--as-needed) + deplibs="$deplibs $arg" + continue + ;; + -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result @@ -7784,12 +7789,10 @@ 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=*| \ - -specs=*) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" @@ -8038,6 +8041,7 @@ func_mode_link () case $linkmode in lib) + as_needed_flag= passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in @@ -8049,6 +8053,7 @@ func_mode_link () done ;; prog) + as_needed_flag= compile_deplibs= finalize_deplibs= alldeplibs=false @@ -8118,6 +8123,15 @@ 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 @@ -10535,6 +10549,13 @@ 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 @@ -10767,8 +10788,8 @@ EOF compile_deplibs=$new_libs - func_append compile_command " $compile_deplibs" - func_append finalize_command " $finalize_deplibs" + func_append compile_command " $as_needed_flag $compile_deplibs" + func_append finalize_command " $as_needed_flag $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. @@ -11663,7 +11684,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="/usr/bin/ld -m elf_x86_64" +LD="/bin/ld -m elf_x86_64" # How to create reloadable object files. reload_flag=" -r" @@ -11673,7 +11694,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="/opt/psi/Programming/gcc/10.4.0/bin/g++" +CC="g++" # Is the compiler the GNU compiler? with_gcc=yes @@ -11794,17 +11815,17 @@ file_list_spec="" hardcode_action=immediate # The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs="/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64/../lib64 /opt/psi/Programming/gcc/10.4.0/lib/../lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/10.4.0/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../.." +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/../../.." # Dependencies to place before and after the objects being linked to # create a shared library. -predep_objects="/lib/../lib64/crti.o /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtbeginS.o" -postdep_objects="/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtendS.o /lib/../lib64/crtn.o" +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" 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/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/10.4.0/lib64/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib/../lib64 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib64 -L/opt/psi/Programming/gcc/10.4.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../.." +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/../../.." # ### END LIBTOOL TAG CONFIG: CXX diff --git a/m4/libtool.m4 b/m4/libtool.m4 index a644432..a3bc337 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -2867,9 +2867,6 @@ 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 @@ -2878,7 +2875,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="$sys_lib_dlsearch_path_spec $lt_ld_extra" + sys_lib_dlsearch_path_spec="/lib /usr/lib $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 3f1e68a..7570127 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 .//install-sh \ - .//ltmain.sh .//missing AUTHORS COPYING ChangeLog INSTALL NEWS \ - README compile config.guess config.sub install-sh ltmain.sh \ - missing + .//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 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -240,24 +240,24 @@ distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print -ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16 +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.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/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$(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.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_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 @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.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@ AR = ar -AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf -AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader -AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16 +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 = /opt/psi/Programming/gcc/10.4.0/bin/gcc +CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -CPP = /opt/psi/Programming/gcc/10.4.0/bin/gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -CXX = /opt/psi/Programming/gcc/10.4.0/bin/g++ -CXXCPP = /opt/psi/Programming/gcc/10.4.0/bin/g++ -E +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 CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo @@ -269,28 +269,28 @@ DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = -EGREP = /usr/bin/grep -E +EGREP = /bin/grep -E EXEEXT = -FGREP = /usr/bin/grep -F -GREP = /usr/bin/grep -INSTALL = /usr/bin/install -c +FGREP = /bin/grep -F +GREP = /bin/grep +INSTALL = /bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 +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 LIBOBJS = -LIBS = +LIBS = -lQt5Xml -lQt5Core -lpython3.7m LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s LTLIBOBJS = LT_SYS_LIBRARY_PATH = -MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo +MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -NM = /usr/bin/nm -B +MKDIR_P = /bin/mkdir -p +NM = /bin/nm -B NMEDIT = OBJDUMP = objdump OBJEXT = o @@ -299,24 +299,24 @@ OTOOL64 = PACKAGE = cafe PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch PACKAGE_NAME = CAFE -PACKAGE_STRING = CAFE 1.20.1 +PACKAGE_STRING = CAFE 1.22.0 PACKAGE_TARNAME = cafe PACKAGE_URL = -PACKAGE_VERSION = 1.20.1 +PACKAGE_VERSION = 1.22.0 PATH_SEPARATOR = : RANLIB = ranlib -SED = /usr/bin/sed +SED = /bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip -VERSION = 1.20.1 -abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp +VERSION = 1.22.0 +abs_builddir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp +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 = /opt/psi/Programming/gcc/10.4.0/bin/gcc -ac_ct_CXX = +ac_ct_CC = gcc +ac_ct_CXX = g++ ac_ct_DUMPBIN = am__include = include am__leading_dot = . @@ -343,8 +343,8 @@ host_vendor = pc htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info -install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64 +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 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.21.0-gcc-10.4.0 +prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin diff --git a/src/makefile b/src/makefile index 71831a1..769fdd3 100644 --- a/src/makefile +++ b/src/makefile @@ -88,7 +88,7 @@ PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = x86_64-pc-linux-gnu host_triplet = x86_64-pc-linux-gnu -#am__append_1 = PyCafe.cpp +am__append_1 = PyCafe.cpp #am__append_2 = zbsCafeService.cpp zbsDataHolders.cpp \ # bitshuffle/bitshuffle_core.c bitshuffle/bitshuffle.c bitshuffle/iochain.c @@ -146,7 +146,7 @@ am__libcafe_la_SOURCES_DIST = cafe.cpp cafeCache.cpp cafeGroup.cpp \ zbsCafeService.cpp zbsDataHolders.cpp \ bitshuffle/bitshuffle_core.c bitshuffle/bitshuffle.c \ bitshuffle/iochain.c -#am__objects_1 = PyCafe.lo +am__objects_1 = PyCafe.lo am__dirstamp = $(am__leading_dot)dirstamp #am__objects_2 = zbsCafeService.lo zbsDataHolders.lo \ # bitshuffle/bitshuffle_core.lo \ @@ -266,7 +266,7 @@ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/makefile.in $(top_srcdir)/./depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16 +ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing aclocal-1.16 AMTAR = $${TAR-tar} #if HAVE_PYCAFE_EXT_ @@ -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.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/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$(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.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_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 +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 AR = ar -AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf -AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader -AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16 +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 = /opt/psi/Programming/gcc/10.4.0/bin/gcc +CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -CPP = /opt/psi/Programming/gcc/10.4.0/bin/gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -CXX = /opt/psi/Programming/gcc/10.4.0/bin/g++ -CXXCPP = /opt/psi/Programming/gcc/10.4.0/bin/g++ -E +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 CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo @@ -303,28 +303,28 @@ DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = -EGREP = /usr/bin/grep -E +EGREP = /bin/grep -E EXEEXT = -FGREP = /usr/bin/grep -F -GREP = /usr/bin/grep -INSTALL = /usr/bin/install -c +FGREP = /bin/grep -F +GREP = /bin/grep +INSTALL = /bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 +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 LIBOBJS = -LIBS = +LIBS = -lQt5Xml -lQt5Core -lpython3.7m LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s LTLIBOBJS = LT_SYS_LIBRARY_PATH = -MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo +MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitea/CAFE/cpp/missing makeinfo MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -NM = /usr/bin/nm -B +MKDIR_P = /bin/mkdir -p +NM = /bin/nm -B NMEDIT = OBJDUMP = objdump OBJEXT = o @@ -333,24 +333,24 @@ OTOOL64 = PACKAGE = cafe PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch PACKAGE_NAME = CAFE -PACKAGE_STRING = CAFE 1.20.1 +PACKAGE_STRING = CAFE 1.22.0 PACKAGE_TARNAME = cafe PACKAGE_URL = -PACKAGE_VERSION = 1.20.1 +PACKAGE_VERSION = 1.22.0 PATH_SEPARATOR = : RANLIB = ranlib -SED = /usr/bin/sed +SED = /bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip -VERSION = 1.20.1 -abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src -abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src -abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp +VERSION = 1.22.0 +abs_builddir = /afs/psi.ch/project/cafe/gitea/CAFE/cpp/src +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 = /opt/psi/Programming/gcc/10.4.0/bin/gcc -ac_ct_CXX = +ac_ct_CC = gcc +ac_ct_CXX = g++ ac_ct_DUMPBIN = am__include = include am__leading_dot = . @@ -377,8 +377,8 @@ host_vendor = pc htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info -install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64 +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 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.21.0-gcc-10.4.0 +prefix = /opt/gfa/cafe/cpp/cafe-1.22.0-py37-gcc- program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin